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

body {
  margin: 0;
  padding: 0;
}
.togaf-main * {
  box-sizing: border-box;
  font-family: Roboto;
}
.togaf-main p {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  text-align: left;
  color: #707070;
  width: 100%;
}
.togaf-main p strong,
.togaf-main p b {
  font-weight: 700;
}
.togaf-main a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.togaf-main h1,
.togaf-main h2,
.togaf-main h3,
.togaf-main h4 {
  margin: 0;
}
.togaf-main h2 {
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
}
.togaf-main ul,
.togaf-main li {
  padding: 0;
  margin: 0;
}
.togaf-container {
  width: 100%;
}
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;
  /* Hides the default checkbox style */
  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;
}
::-webkit-scrollbar {
  width: 5px;
  height: 3px;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: #707070;
}
::-webkit-scrollbar-thumb {
  background: #007C66;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #007C66;
}
.form {
  display: flex;
  flex-direction: column;
}
.form .input-container {
  display: flex;
  position: relative;
  margin-bottom: 1rem;
  width: 100%;
}
.form .input-container .input-field,
.form .input-container .message {
  width: 100%;
  border: none;
  padding: 0.5rem;
  outline: 0;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  font-weight: 500;
  color: #95989A;
}
.form .input-container .message {
  height: 75px;
  resize: none;
  overflow: auto;
}
.form .input-container ::-webkit-input-placeholder {
  /* Edge */
  color: #bcbcbc;
}
.form .input-error .input-field {
  border: 2px solid #EB4947;
}
.form .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: #EB4947;
}
.form .form-consent {
  display: flex;
  color: #000000;
  font-size: 11px;
  margin-bottom: 0.4rem;
}
.form .form-consent label {
  margin-left: 0.3rem;
  align-self: center;
  width: calc(100% - 15px);
}
.form .form-consent p {
  color: #000000;
  line-height: 1.4;
  font-size: 11px;
}
.form .form-consent a {
  color: #007C66;
  font-weight: bold;
}
.form .consent-error {
  margin-bottom: 0.5rem;
}
.form .consent-error p {
  color: #EB4947;
  line-height: 1.4;
  font-size: 11px;
}
@keyframes beat {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.3);
  }
}
.togaf-main .flex-container {
  display: flex;
  margin: auto;
}
.togaf-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.togaf-buttons .btn-red,
.togaf-buttons .btn-green,
.togaf-buttons .btn-white {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 12px;
  position: relative;
  text-decoration: none;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  outline: none;
  min-width: 167px;
  overflow: hidden;
}
.togaf-buttons .btn-red img,
.togaf-buttons .btn-green img,
.togaf-buttons .btn-white img {
  width: 18px;
  height: 20px;
  margin-right: 6px;
}
.togaf-buttons .btn-red::before,
.togaf-buttons .btn-green::before,
.togaf-buttons .btn-white::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: all 0.5s;
  opacity: 1;
  -webkit-transform: translate(-105%, 0);
  transform: translate(-105%, 0);
  background-color: rgba(255, 255, 255, 0.8);
}
.togaf-buttons .btn-red:hover::before,
.togaf-buttons .btn-green:hover::before,
.togaf-buttons .btn-white:hover::before {
  opacity: 0.2;
  transform: translate(0, 0);
}
.togaf-buttons .btn-red {
  background-color: #EB4947;
  color: #FFF;
}
.togaf-buttons .btn-white {
  background: #FFF;
  color: #000000;
}
.togaf-buttons .btn-white::before {
  background-color: #fefefe;
}
.togaf-buttons .btn-green {
  background: linear-gradient(#017D67, 65%, #00445E);
  background: -ms-linear-gradient(#017d67 65%,#00445e);
  color: #FFF;
}
.togaf-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.togaf-heading h2 {
  font-size: 22px;
  padding-bottom: 10px;
  color: #000000;
  position: relative;
}
.togaf-heading h2::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/togaf-offers/heading-bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  width: 100%;
  height: 14px;
  bottom: -4px;
  left: 0;
}
.center-heading h2 {
  text-align: center;
}
.center-heading h2::before {
  background-position: center;
}
.white-heading h2 {
  text-align: center;
  color: #FFF;
}
.white-heading h2::before {
  background-image: url(/_public/images/togaf-offers/heading-white.svg);
  background-position: center;
}
.togaf-sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 4;
  box-shadow: 0 0 10px grey;
  background-color: #007C66;
  padding: 1rem 1.5rem;
  transition: 1s;
}
.togaf-sticky .prince2-container {
  border-radius: 0!important;
  padding: 0!important;
  box-shadow: none!important;
}
.togaf-sticky-up {
  top: -100px;
}
.togaf-sticky-down {
  top: 0;
  left: 0;
}
.banner-section {
  flex-direction: column;
  padding: 3rem 1.5rem;
  padding-top: 1.5rem;
  background-image: linear-gradient(#017D67 65%, #00445E);
}
.banner-section .logo-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  align-items: center;
}
.banner-section .logo-container .togaf-container {
  display: flex;
  justify-content: space-between;
  height: auto;
}
.banner-section .logo-container .togaf-container .tka-logo {
  display: flex;
  max-width: 200px;
}
.banner-section .logo-container .togaf-container .tka-logo img {
  width: 100%;
  height: 100%;
}
.banner-section .logo-container .togaf-container .menu {
  display: flex;
  z-index: 1;
  margin-left: auto;
}
.banner-section .logo-container .togaf-container .menu img {
  width: 23px;
  height: 23px;
}
.banner-section .logo-container .togaf-container .menu-links {
  width: 0;
  transition: all 0.5s;
  height: fit-content;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 15;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.098);
}
.banner-section .logo-container .togaf-container .menu-links .menu-toggle {
  color: #000;
}
.banner-section .logo-container .togaf-container .menu-links .menu-toggle img {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.banner-section .logo-container .togaf-container ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
}
.banner-section .logo-container .togaf-container ul .links-li {
  padding: 8px 0;
  border-bottom: 1px solid #000;
  border-bottom-style: dotted;
}
.banner-section .logo-container .togaf-container ul .links-li:first-child {
  padding-top: 0;
}
.banner-section .logo-container .togaf-container ul .links-li:nth-last-child(2) {
  border-bottom: none;
  padding-bottom: 0;
}
.banner-section .logo-container .togaf-container ul .links-li:last-child {
  display: none;
  padding-bottom: 0;
}
.banner-section .logo-container .togaf-container ul .links-li .link {
  font-size: 14px;
  color: #000;
  text-decoration: none;
}
.banner-section .logo-container .togaf-container ul .togaf-buttons {
  display: none;
}
.banner-section .logo-container .togaf-container .menu.active {
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.047);
}
.banner-section .logo-container .togaf-container .menu.active + .menu-links {
  padding: 15px;
  width: 80%;
}
.banner-section .logo-container .togaf-container .menu.active + .menu-links .menu-toggle {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.banner-section .togaf-container {
  height: 100%;
}
.banner-section .banner-container {
  display: flex;
  flex-direction: column;
}
.banner-section .banner-container .banner-content {
  display: flex;
  flex-direction: column;
}
.banner-section .banner-container .banner-content .togaf-logo {
  width: 115px;
}
.banner-section .banner-container .banner-content h1 {
  display: flex;
  align-items: flex-start;
  width: 100%;
  font-size: 28px;
  color: #fff;
  margin: 17px 0 .2rem 0;
}
.banner-section .banner-container .banner-content h1 img {
  width: 35px;
  height: 35px;
  margin-right: 10px;
}
.banner-section .banner-container .banner-content p {
  color: #FFF;
}
.banner-section .banner-container .banner-content .togaf-offer {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}
.banner-section .banner-container .banner-content .togaf-offer h3 {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  color: #FFF;
}
.banner-section .banner-container .banner-content .togaf-offer h3 img {
  width: 22px;
  margin-right: 5px;
}
.banner-section .banner-container .banner-content .togaf-offer .countdown-offer {
  display: flex;
  flex-direction: row;
  margin-top: 1rem;
}
.banner-section .banner-container .banner-content .togaf-offer .countdown-offer .timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 1.5rem;
  position: relative;
}
.banner-section .banner-container .banner-content .togaf-offer .countdown-offer .timer::after {
  position: absolute;
  content: '';
  background-image: url(/_public/images/togaf-offers/colons.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 40px;
  top: 0px;
  right: -15px;
}
.banner-section .banner-container .banner-content .togaf-offer .countdown-offer .timer:last-child {
  margin-right: 0;
}
.banner-section .banner-container .banner-content .togaf-offer .countdown-offer .timer:last-child::after {
  content: none;
}
.banner-section .banner-container .banner-content .togaf-offer .countdown-offer .timer span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  padding-bottom: 8px;
  position: relative;
  z-index: 1;
  width: 50px;
  height: 45px;
}
.banner-section .banner-container .banner-content .togaf-offer .countdown-offer .timer span:hover {
  color: #FFF;
}
.banner-section .banner-container .banner-content .togaf-offer .countdown-offer .timer span:hover::before {
  background-image: url(/_public/images/togaf-offers/red-polygen.png);
}
.banner-section .banner-container .banner-content .togaf-offer .countdown-offer .timer span::before {
  position: absolute;
  content: '';
  background-image: url(/_public/images/togaf-offers/white-polygen.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.banner-section .banner-container .banner-content .togaf-offer .countdown-offer .timer p{
  text-align: center;
}
.banner-section .banner-container .banner-content .togaf-buttons {
  justify-content: flex-start;
}
.banner-section .banner-container .requirement-image {
  display: flex;
  width: 100%;
  height: 100%;
  margin-top: 2rem;
}
.banner-section .banner-container .requirement-image img {
  width: 100%;
}
.banner-section .banner-container .requirement-image .mgmt-mob {
  display: flex;
}
.banner-section .banner-container .requirement-image .mgmt-ipad {
  display: none;
}
.togaf-facts-training {
  flex-direction: column;
}
.togaf-facts-training .togaf-facts {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
  background: #fafafa;
}
.togaf-facts-training .togaf-facts .facts-container {
  display: flex;
  flex-direction: column;
}
.togaf-facts-training .togaf-facts .facts-container .togaf-heading p {
  text-align: center;
  margin-top: 1rem;
}
.togaf-facts-training .togaf-facts .facts-container .facts-list {
  display: flex;
  flex-direction: column;
}
.togaf-facts-training .togaf-facts .facts-container .facts-list .facts-info {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  justify-content: center;
  align-items: center;
  color: #000000;
  border: 2px solid #007C66;
  margin-bottom: 1rem;
}
.togaf-facts-training .togaf-facts .facts-container .facts-list .facts-info:hover .image .facts {
  background-color: #EB4947;
  transition: 0.5s all;
  border: 2px solid #EB4947;
}
.togaf-facts-training .togaf-facts .facts-container .facts-list .facts-info:hover .image .facts .red {
  display: none;
}
.togaf-facts-training .togaf-facts .facts-container .facts-list .facts-info:hover .image .facts .white {
  display: flex;
}
.togaf-facts-training .togaf-facts .facts-container .facts-list .facts-info .image {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
}
.togaf-facts-training .togaf-facts .facts-container .facts-list .facts-info .image h3 {
  margin-top: 0.2rem;
  font-size: 28px;
  display: flex;
  align-items: center;
}
.togaf-facts-training .togaf-facts .facts-container .facts-list .facts-info .image h3 span {
  color: #EB4947;
  align-items: center;
  margin-left: 4px;
}
.togaf-facts-training .togaf-facts .facts-container .facts-list .facts-info .image .facts {
  display: flex;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: #FFF;
  border: 2px solid #EB4947;
}
.togaf-facts-training .togaf-facts .facts-container .facts-list .facts-info .image .facts .red {
  width: 30px;
}
.togaf-facts-training .togaf-facts .facts-container .facts-list .facts-info .image .facts .white {
  display: none;
}
.togaf-facts-training .togaf-facts .facts-container .facts-list .facts-info p {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
  margin-top: 0.2rem;
  text-align: center;
}
.togaf-facts-training .togaf-facts .facts-container .facts-list .facts-info:last-child {
  margin-bottom: 0;
}
.togaf-facts-training .togaf-overview-delivery {
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.togaf-facts-training .togaf-overview-delivery .overview-delivery-container {
  display: flex;
  flex-direction: column;
}
.togaf-facts-training .togaf-overview-delivery .overview-delivery-container .overview-container {
  display: flex;
  flex-direction: column;
}
.togaf-facts-training .togaf-overview-delivery .overview-delivery-container .overview-container .text {
  margin-top: 0.5rem;
}
.togaf-facts-training .togaf-overview-delivery .overview-delivery-container .overview-container .togaf-buttons {
  justify-content: flex-start;
}
.togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list {
  display: flex;
  flex-direction: row;
  width: 100%;
  flex-wrap: wrap;
  position: relative;
  justify-content: space-between;
}
.togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list .circle {
  display: none;
  position: absolute;
  top: 66px;
  left: 229px;
  flex-direction: column;
  height: 90px;
  width: 90px;
  z-index: 1;
  background-color: #FFF;
  border-radius: 50%;
}
.togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list .circle:before {
  content: '';
  height: 170px;
  width: 170px;
  position: absolute;
  border-radius: 50%;
  top: -39px;
  left: -37px;
  background-color: #fff;
  opacity: 0.5;
}
.togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list .delivery-info {
  display: flex;
  flex-direction: column;
  background-color: #017D67;
  border-radius: 10px;
  justify-content: center;
  padding: 1rem;
  margin-top: 1rem;
  width: 48%;
  transition: 0.3s ease-in-out;
}
.togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list .delivery-info:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.7);
}
.togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list .delivery-info .content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list .delivery-info .content img {
  width: 40px;
  height: 40px;
}
.togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list .delivery-info .content h3 {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.4;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  display: flex;
  width: 100%;
}
.togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list .delivery-info:nth-child(2) {
  opacity: 1;
}
.togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list .delivery-info:nth-child(3) {
  opacity: 0.9;
}
.togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list .delivery-info:nth-child(4) {
  opacity: 0.8;
}
.togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list .delivery-info:nth-child(5) {
  opacity: 0.7;
}
.togaf-started {
  display: none!important;
}
.top-courses {
  padding: 3rem 1.5rem;
  background: #fafafa;
}
.top-courses .top-courses-container {
  display: flex;
  flex-direction: column;
}
.top-courses .top-courses-container .togaf-courses {
  display: flex;
  flex-direction: column;
}
.top-courses .top-courses-container .togaf-courses .courses-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  align-items: center;
}
.top-courses .top-courses-container .togaf-courses .courses-heading p {
  position: relative;
  color: #078f81;
  padding-left: 35px;
  font-weight: bold;
  width: auto;
}
.top-courses .top-courses-container .togaf-courses .courses-heading p::before {
  position: absolute;
  content: '';
  background-color: #078f81;
  width: 35px;
  height: 2px;
  top: 12px;
  left: 0;
}
.top-courses .top-courses-container .togaf-courses .courses-heading h1 {
  font-size: 22px;
}
.top-courses .top-courses-container .togaf-courses p {
  text-align: center;
}
.top-courses .top-courses-container .top-courses-list {
  display: flex;
  flex-direction: column;
  margin-top: 35px;
}
.top-courses .top-courses-container .top-courses-list .course-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem;
  box-shadow: 0px 0px 15px #dedada;
  margin-bottom: 30px;
  position: relative;
  background-color: #FFF;
}
.top-courses .top-courses-container .top-courses-list .course-item:last-child {
  margin-bottom: 0;
}
.top-courses .top-courses-container .top-courses-list .course-item .course-name {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  width: 100%;
}
.top-courses .top-courses-container .top-courses-list .course-item .duration {
  margin-top: 10px;
  line-height: 1.4;
  text-align: center;
  font-weight: 600;
}
.top-courses .top-courses-container .top-courses-list .course-item .duration span{
  font-weight: 400;
}
.top-courses .top-courses-container .top-courses-list .course-item .togaf-buttons {
  margin-top: 10px;
}
.top-courses .top-courses-container .top-courses-list .course-item .number {
  background-color: #078f81;
  display: flex;
  width: 35px;
  height: 35px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  position: absolute;
  top: -15px;
  left: -15px;
}
.top-courses .top-courses-container .top-courses-list .course-item .number p {
  color: #FFF;
  text-align: center;
}
.courses-section {
  padding: 3rem 1.5rem;
}
.courses-section .courses-container {
  display: flex;
  flex-direction: column;
}
.courses-section .courses-container .togaf-heading {
  margin-bottom: 2.5rem;
}
.courses-section .courses-container .togaf-heading p {
  margin-top: 8px;
  text-align: center;
  line-height: 1.4;
}
.courses-section .courses-container .togaf-heading p span {
  color: #007C66;
  font-weight: 700;
}
.courses-section .courses-container .courses-list {
  display: flex;
  flex-direction: column;
}
.courses-section .courses-container .courses-list .courses-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  box-shadow: 0 0 10px #80808021;
  margin-bottom: 1.5rem;
  background-image: linear-gradient(0deg, #fff,#40b19c42);
  background-image: -ms-linear-gradient(90deg, #fff,#d9f0ec);
}
.courses-section .courses-container .courses-list .courses-content:hover {
  background-image: linear-gradient(0deg, #40b19c42,#fff);
  background-image: -ms-linear-gradient(90deg, #d9f0ec,#fff);
}
.courses-section .courses-container .courses-list .courses-content .course-name {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  width: 100%;
  margin-bottom: 0.5rem;
}
.courses-section .courses-container .courses-list .courses-content p {
  text-align: center;
  font-weight: 600;
}
.courses-section .courses-container .courses-list .courses-content p span {
  font-weight: normal;
}
.courses-section .courses-container .courses-list .courses-content:last-child {
  margin-bottom: 0;
}
.togaf-training {
  padding: 3rem 1.5rem;
  background-color: #F8F8F8;
}
.togaf-training .training-container {
  display: flex;
  flex-direction: column;
}
.togaf-training .training-container .training-content {
  display: flex;
  flex-direction: column;
}
.togaf-training .training-container .training-content p {
  color: #000000;
}
.togaf-training .training-container .training-content .training-list {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  list-style: none;
  padding: 0 1rem;
}
.togaf-training .training-container .training-content .training-list li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 2.6rem;
}
.togaf-training .training-container .training-content .training-list li:last-child {
  margin-bottom: 0;
}
.togaf-training .training-container .training-content .training-list li span {
  display: flex;
  position: relative;
  z-index: 1;
}
.togaf-training .training-container .training-content .training-list li span::before {
  content: '';
  width: 80px;
  height: 80px;
  position: absolute;
  background-image: url(/_public/images/togaf-offers/icon-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
  top: -26px;
  left: -26px;
}
.togaf-training .training-container .training-content .training-list li span img {
  width: 30px;
  height: 30px;
}
.togaf-training .training-container .training-content .training-list li:hover span img{
  animation: tada 2s infinite;
}
.togaf-training .training-container .training-content .training-list li p {
  line-height: 1.4;
  margin-left: 2rem;
}
.togaf-training .training-container .certification-content {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
  height: 100%;
}
.togaf-training .training-container .certification-content .certification-img {
  display: flex;
  height: 100%;
}
.togaf-training .training-container .certification-content .certification-img img {
  width: 100%;
  height: 100%;
}
.togaf-packages {
  padding: 3rem 1.5rem;
}
.togaf-packages .package-container {
  display: flex;
  flex-direction: column;
}
.togaf-packages .package-container .togaf-heading {
  margin-bottom: 2rem;
}
.togaf-packages .package-container .packages-list {
  display: flex;
  flex-direction: column;
}
.togaf-packages .package-container .packages-list .package-content {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  border-bottom: 4px solid #007C66;
  margin-bottom: 2rem;
  background-color: #FFF;
  width: 100%;
  position: relative;
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 16px #e9e9e9;
  transition-property: color;
  transition: 1s ease-in-out;
}
.togaf-packages .package-container .packages-list .package-content:last-child {
  margin-bottom: 0;
}
.togaf-packages .package-container .packages-list .package-content .package-heading {
  display: flex;
  flex-direction: column;
  padding: 10px 20px;
  background-color: #F3F3F3;
  z-index: 1;
}
.togaf-packages .package-container .packages-list .package-content .package-heading span {
  margin-top: 5px;
  font-size: 14px;
  color: #373737;
  line-height: 1.4;
  font-weight: 500;
}
.togaf-packages .package-container .packages-list .package-content ul {
  display: flex;
  flex-direction: column;
  padding: 20px;
  list-style-type: none;
  min-height: 225px;
}
.togaf-packages .package-container .packages-list .package-content ul li {
  margin-bottom: 14px;
  position: relative;
  font-size: 14px;
  padding-left: 1rem;
  transition: 1s ease-in-out;
}
.togaf-packages .package-container .packages-list .package-content ul li:last-child {
  margin-bottom: 0;
}
.togaf-packages .package-container .packages-list .package-content ul li::before {
  content: '';
  top: 5px;
  left: 0;
  width: 10px;
  height: 10px;
  position: absolute;
  background-color: #007C66;
  transform: rotate(45deg);
  transition: 1s ease-in-out;
}
.togaf-packages .package-container .packages-list .package-content .togaf-buttons {
  padding: 0 20px;
  margin-top: 0;
}
.togaf-packages .package-container .packages-list .package-content .togaf-buttons .btn-red {
  width: 100%;
  transition: 1s ease-in-out;
}
.togaf-packages .package-container .packages-list .package-content .togaf-buttons .btn-red img{
  transition: 1s ease-in-out;
}
.togaf-packages .package-container .packages-list .package-content .togaf-buttons .btn-red .black-box {
  display: none;
}
.togaf-packages .package-container .packages-list .package-content::before {
  content: '';
  width: 100%;
  position: absolute;
  height: 0;
  background-color: #007c66;
  transition: 1s ease-in-out;
  bottom: 0;
  left: 0;
  transform: scaleY(0);
  transform-origin: 50% 100%;
}
.togaf-packages .package-container .packages-list .package-content:hover:before {
  transform: scaleY(1);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  height: 100%;
  transition: 1s ease-in-out;
}
.togaf-packages .package-container .packages-list .package-content:hover ul li {
  color: #FFF;
  transition: 1s ease-in-out;
}
.togaf-packages .package-container .packages-list .package-content:hover ul li::before {
  background-color: #FFF;
}
.togaf-packages .package-container .packages-list .package-content:hover .togaf-buttons .btn-red {
  background-color: #FFF;
  color: #000000;
  transition: 1s ease-in-out;
}
.togaf-packages .package-container .packages-list .package-content:hover .togaf-buttons .btn-red img {
  transition: 1s ease-in-out;
}
.togaf-packages .package-container .packages-list .package-content:hover .togaf-buttons .btn-red .white-box {
  display: none;
}
.togaf-packages .package-container .packages-list .package-content:hover .togaf-buttons .btn-red .black-box {
  display: flex;
}
.testimonial-chooseus {
  padding: 3rem 1.5rem;
  background: linear-gradient(#017D67, 65%, #00445E);
  background: -ms-linear-gradient(#017D67 65%, #00445E);
  flex-direction: column;
}
.testimonial-chooseus .main-testi-choose {
  display: flex;
  flex-direction: column;
}
.testimonial-chooseus .main-testi-choose .main-testimonial {
  display: flex;
  flex-direction: column;
}
.testimonial-chooseus .main-testi-choose .main-testimonial .togaf-heading {
  margin-bottom: 2rem;
}
.testimonial-chooseus .main-testi-choose .main-testimonial .togaf-heading h2 {
  padding-bottom: 1rem;
}
.testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-client {
  display: none;
  z-index: 1;
}
.testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-list {
  display: flex;
  flex-direction: column;
  z-index: 0;
}
.testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-list .owl-nav {
  margin: auto;
  margin-top: 1.5rem;
  width: 77px;
  display: flex;
}
.testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-list .owl-nav .owl-prev {
  background-image: url(/_public/images/togaf-offers/left-arrow.svg) !important;
  background-repeat: no-repeat !important;
  width: 30px;
  height: 30px;
  background-size: contain !important;
  margin-right: 1rem;
  outline: none;
  background-position: center;
}
.testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-list .owl-nav .owl-prev span {
  display: none;
}
.testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-list .owl-nav .owl-next {
  background-image: url(/_public/images/togaf-offers/right-arrow.svg) !important;
  background-repeat: no-repeat !important;
  width: 30px;
  height: 30px;
  background-size: contain !important;
  outline: none;
  background-position: center;
}
.testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-list .owl-nav .owl-next span {
  display: none;
}
.testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-list .testimonial {
  display: flex;
  flex-direction: column;
  margin: 0 1rem;
}
.testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-list .testimonial .name-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.5rem;
}
.testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-list .testimonial .name-img h3 {
  color: #FFF;
  margin: 0;
}
.testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-list .testimonial .name-img span {
  display: flex;
  width: 62px;
  height: 62px;
  margin-bottom: 6px;
}
.testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-list .testimonial .name-img span img {
  width: 100%;
  border-radius: 50%;
}
.testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-list .testimonial p {
  color: #FFF;
  text-align: center;
  line-height: 1.6;
}
.testimonial-chooseus .main-choose-us {
  display: flex;
  flex-direction: column;
  margin-top: 1.5rem;
}
.testimonial-chooseus .main-choose-us .choose-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 2rem;
}
.testimonial-chooseus .main-choose-us .choose-list .choose {
  display: flex;
  flex-direction: column;
  background-color: #FFF;
  position: relative;
  margin-bottom: 2.5rem;
  padding: 1rem;
  border-radius: 10px;
  padding-top: 2rem;
  width: 100%;
}
.testimonial-chooseus .main-choose-us .choose-list .choose:last-child {
  margin-bottom: 0;
}
.testimonial-chooseus .main-choose-us .choose-list .choose .choose-img {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  padding: 10px;
  position: absolute;
  top: -26px;
  left: 41%;
  border: 2px solid #eb4947;
  align-self: center;
}
.testimonial-chooseus .main-choose-us .choose-list .choose .choose-img img {
  width: 30px;
  height: 25px;
}
.testimonial-chooseus .main-choose-us .choose-list .choose .choose-content {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.testimonial-chooseus .main-choose-us .choose-list .choose .choose-content h3 {
  margin-bottom: 0.5rem;
}
.testimonial-chooseus .main-choose-us .choose-list .choose .choose-content p {
  color: #000000;
  text-align: center;
  line-height: 1.3;
  font-size: 13px;
  transition: .5s all;
}
.testimonial-chooseus .main-choose-us .choose-list .choose:hover {
  background-image: linear-gradient(#EB4947 65%, #ffb0b0);
  transition: 0.5s all;
  color: #FFF;
}
.testimonial-chooseus .main-choose-us .choose-list .choose:hover .choose-img {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  transition: 0.8s all;
}
.testimonial-chooseus .main-choose-us .choose-list .choose:hover p {
  color: #FFF;
}
.testimonial-chooseus .main-choose-us .choose-list .choose:hover .choose-img {
  border: 2px solid #007C66;
}
.togaf-clients {
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
}
.togaf-clients .clients-container {
  display: flex;
  flex-direction: column;
}
.togaf-clients .clients-container .clients-left {
  display: flex;
  flex-direction: column;
}
.togaf-clients .clients-container .clients-left .clients-info {
  display: flex;
  flex-direction: column;
}
.togaf-clients .clients-container .clients-left .clients-info .togaf-heading {
  margin-bottom: 3.2rem;
}
.togaf-clients .clients-container .clients-left .clients-info .clients-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.togaf-clients .clients-container .clients-left .clients-info .clients-list .client-name {
  display: flex;
  position: relative;
  margin-bottom: 3.5rem;
  width: 109px;
  margin-right: 2.5rem;
  margin-left: 0.8rem;
}
.togaf-clients .clients-container .clients-left .clients-info .clients-list .client-name span {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  transform: rotate(45deg);
  height: 85px;
  width: 85px;
  z-index: 1;
}
.togaf-clients .clients-container .clients-left .clients-info .clients-list .client-name span:hover {
  -webkit-transform: rotate(360deg);
  transform: rotate(405deg);
  transition: 0.8s all;
}
.togaf-clients .clients-container .clients-left .clients-info .clients-list .client-name::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/togaf-offers/client-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  left: -25px;
  bottom: 2px;
  z-index: -1;
}
.togaf-clients .clients-container .clients-left .clients-info .clients-list .client-name::after {
  content: '';
  position: absolute;
  background-image: url(/_public/images/togaf-offers/client-bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  left: 25px;
  bottom: -2px;
  z-index: -1;
}
.togaf-clients .clients-container .clients-left .clients-info .clients-list .client-name img {
  width: 60px;
  height: 55px;
  transform: rotate(-45deg);
}
.togaf-clients .clients-container .clients-left .clients-info .clients-list .client-name:nth-child(even) {
  margin-right: 0;
  margin-left: 0;
}
.togaf-clients .clients-container .clients-left .clients-info .clients-list .client-name:nth-child(5) {
  margin-right: 0;
  margin-bottom: 0rem;
  position: relative;
  bottom: 27px;
  right: 0;
}
.togaf-clients .clients-container .clients-left .togaf-budget {
  display: flex;
  flex-direction: column;
  background: linear-gradient(#017D67, 65%, #00445E);
  background: -ms-linear-gradient(#017D67 65%, #00445E);
}
.togaf-clients .clients-container .clients-left .togaf-budget .budget-container {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
}
.togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-left p {
  margin-top: 0.5rem;
  color: #FFF;
}
.togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-left .white-heading {
  margin-bottom: 0.5rem;
}
.togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-left .white-heading h2 {
  text-align: left;
}
.togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-left .white-heading h2::before {
  background-position: left;
}
.togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-left .budget-list {
  display: flex;
  flex-direction: column;
  padding: 0 1rem;
}
.togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-left .budget-list li {
  color: #FFF;
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 0.4rem;
}
.togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-left .togaf-buttons {
  justify-content: flex-start;
}
.togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-right {
  display: flex;
  flex-direction: column;
}
.togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-right .delivery-method {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1.5rem;
}
.togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-right .delivery-method .list {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0.3rem;
  width: 46%;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  border: 2px solid #FFF;
}
.togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-right .delivery-method .list img {
  width: 25px;
  height: 25px;
}
.togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-right .delivery-method .list .white-img {
  display: flex;
}
.togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-right .delivery-method .list .blue-img {
  display: none;
}
.togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-right .delivery-method .list p {
  text-align: center;
  line-height: 1.4;
  word-break: break-word;
  color: #FFF;
  margin-top: 0.5rem;
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-right .delivery-method .list:nth-child(3),
.togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-right .delivery-method .list:nth-child(4) {
  margin-top: 1rem;
}
.togaf-clients .clients-container .clients-right {
  display: flex;
  flex-direction: column;
}
.togaf-clients .clients-container .clients-right .form {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 27px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  width: 100%;
}
.togaf-clients .clients-container .clients-right .form::before {
  content: '';
  background-image: url(/_public/images/togaf-offers/left-form-bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 240px;
  height: 207px;
  position: absolute;
  top: -6px;
  left: -6px;
  z-index: -1;
}
.togaf-clients .clients-container .clients-right .form::after {
  content: '';
  background-image: url(/_public/images/togaf-offers/right-form-bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 201px;
  height: 146px;
  position: absolute;
  bottom: -1px;
  right: -4px;
  z-index: -1;
}
.togaf-clients .limited-offer {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background-image: linear-gradient(#016780 65%, #013440);
  margin-top: 2rem;
  border-radius: 27px;
}
.togaf-clients .limited-offer .offer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.togaf-clients .limited-offer .offer-content span {
  width: 160px;
  height: 55px;
  margin-bottom: 10px;
}
.togaf-clients .limited-offer .offer-content span img {
  width: 110px;
}
.togaf-clients .limited-offer .offer-content .offer-txt {
  text-align: center;
  color: #FFF;
  width: 100%;
}
.togaf-clients .limited-offer .offer-content .offer-txt h2 {
  font-size: 30px;
}
.togaf-clients .limited-offer .offer-content .offer-txt h4 {
  font-weight: 400;
}
.togaf-virtual {
  padding: 3rem 1.5rem;
  background-image: linear-gradient(#017D67  65%, #00445E);
}
.togaf-virtual .virtual-main {
  display: flex;
  flex-direction: column;
}
.togaf-virtual .virtual-main .virtual-left {
  display: flex;
  flex-direction: column;
}
.togaf-virtual .virtual-main .virtual-left .togaf-heading p {
  margin-top: 1rem;
  color: #FFF;
  text-align: center;
}
.togaf-virtual .virtual-main .virtual-left .platform-list {
  display: flex;
  flex-direction: column;
}
.togaf-virtual .virtual-main .virtual-left .platform-list .platforms {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  padding: 15px;
  margin-bottom: 1rem;
  background-color: #FFF;
}
.togaf-virtual .virtual-main .virtual-left .platform-list .platforms img {
  width: 40px;
  height: 40px;
}
.togaf-virtual .virtual-main .virtual-left .platform-list .platforms .text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  width: 100%;
}
.togaf-virtual .virtual-main .virtual-left .platform-list .platforms .text-content h3 {
  margin-bottom: 4px;
}
.togaf-virtual .virtual-main .virtual-left .platform-list .platforms .text-content p {
  text-align: center;
  line-height: 1.4;
}
.togaf-virtual .virtual-main .virtual-right {
  display: none;
}
.togaf-faq {
  padding: 3rem 1.5rem;
  background-color: #F5F5F5;
}
.togaf-faq .faq-main {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  align-items: flex-start;
}
.togaf-faq .faq-main .faq {
  display: flex;
  flex-direction: column;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  margin-bottom: 1rem;
  padding: 10px 14px;
  border-radius: 15px;
  background-color: #FFF;
  height: fit-content;
  cursor: pointer;
  width: 100%;
}
.togaf-faq .faq-main .faq:last-child {
  margin-bottom: 0;
}
.togaf-faq .faq-main .faq .question {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
.togaf-faq .faq-main .faq .question h3 {
  font-size: 14px;
  width: calc(100% - 30px) ;
}
.togaf-faq .faq-main .faq .question span {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.togaf-faq .faq-main .faq .question span img {
  width: 20px;
  height: 21px;
}
.togaf-faq .faq-main .faq .question .up {
  display: none;
}
.togaf-faq .faq-main .faq .answer {
  display: none;
}
.togaf-faq .faq-main .faq .answer p {
  color: #FFF;
  padding-top: 6px;
  line-height: 1.5;
  font-size: 13px;
}
.togaf-faq .faq-main .faq .answer ul {
  margin-bottom: 0;
  padding-left: 18px;
  color: #FFF;
}
.togaf-faq .faq-main .faq .answer ul li {
  font-size: 12px;
  line-height: 1.5;
}
.togaf-faq .faq-main .faq.active {
  background-color: #00667F;
}
.togaf-faq .faq-main .faq.active .question h3 {
  color: #FFF;
}
.togaf-faq .faq-main .faq.active .question .up {
  display: flex;
}
.togaf-faq .faq-main .faq.active .question .down {
  display: none;
}
.togaf-footer {
  padding: 3rem 1.5rem;
  background-image: linear-gradient(#017D67 65%, #00445E);
}
.togaf-footer .contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.togaf-footer .contact-info .contact-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.togaf-footer .contact-info .contact-list a {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #FFF;
  font-size: 14px;
  margin-bottom: 10px;
}
.togaf-footer .contact-info .contact-list a img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.togaf-popup {
  display: none;
  background-color: rgba(221, 221, 221, 0.8);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: auto;
  z-index: 16;
}
.togaf-popup .popup {
  margin: auto;
  width: 86%;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  max-width: 400px;
}
.togaf-popup .popup .close-btn {
  width: 16px;
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  cursor: pointer;
}
.togaf-popup .popup .form {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.098);
  margin-bottom: 2rem;
  z-index: 1;
}
.togaf-popup .popup .form h2 {
  margin: auto;
  margin-bottom: 1.6rem;
  color: #000000;
  text-align: center;
  width: 80%;
}
.togaf-popup .popup .form:before {
  content: '';
  position: absolute;
  bottom: -1px;
  right: 0;
  background-image: url(/_public/images/togaf-offers/modal-bottombg.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 96px;
  height: 89px;
  z-index: -1;
  border-bottom-right-radius: 8px;
}
.togaf-popup .popup .form:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(/_public/images/togaf-offers/modal-topbg.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 90px;
  height: 98px;
  z-index: -1;
  border-top-left-radius: 8px;
}
@media (min-width : 768px) {
  .togaf-buttons .btn-red,
  .togaf-buttons .btn-white,
  .togaf-buttons .btn-green {
    font-size: 16px;
  }
  .banner-section {
    padding: 3rem 2rem;
    padding-top: 1.5rem;
  }
  .banner-section .banner-container {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }
  .banner-section .logo-container{
    width: 100%;
  }
  .banner-section .logo-container .togaf-container .menu.active+.menu-links{
    width: 50%;
  }
  .banner-section .banner-container .banner-content {
    width: 48%;
  }
  .banner-section .banner-container .requirement-image {
    width: 49%;
    align-self: flex-start;
  }
  .togaf-facts-training .togaf-facts {
    padding: 4rem 2rem;
  }
  .togaf-facts-training .togaf-facts .facts-container .facts-list {
    flex-direction: row;
    justify-content: space-between;
  }
  .togaf-facts-training .togaf-facts .facts-container .facts-list .facts-info {
    width: 220px;
    margin-bottom: 0;
  }
  .togaf-facts-training .togaf-overview-delivery {
    padding: 3rem 2rem;
    padding-bottom: 1rem;
  }
  .togaf-facts-training .togaf-overview-delivery p {
    text-align: left;
  }
  .togaf-facts-training .togaf-overview-delivery .overview-delivery-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .togaf-facts-training .togaf-overview-delivery .overview-delivery-container .overview-container {
    width: 48%;
  }
  .togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container {
    width: 48%;
    margin-top: 0;
  }
  .togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list .delivery-info {
    min-height: 120px;
    padding: .8rem;
    margin-top: 10px;
  }
  .togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list .delivery-info .content h3 {
    align-items: flex-start;
    min-height: auto;
  }
  .togaf-started {
    padding: 3rem 2rem;
  }
  .togaf-started .started-container {
    display: flex;
    flex-direction: column;
  }
  .togaf-started .started-container .started-image {
    display: flex;
    width: 100%;
    height: 100%;
  }
  .togaf-started .started-container .started-image img {
    width: 100%;
  }
  .top-courses {
    padding: 3rem 2rem;
    background-color: transparent;
    background-image: url(/_public/images/togaf-offers/courses-bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    position: relative;
    z-index: 1;
  }
  .top-courses::before {
    content: '';
    position: absolute;
    background-image: url(/_public/images/togaf-offers/dots.svg);
    background-repeat: no-repeat;
    bottom: -34px;
    left: 130px;
    background-size: contain;
    width: 155px;
    height: 155px;
    z-index: -1;
  }
  .top-courses .top-courses-container {
    background-color: #FFF;
    border-radius: 10px;
    box-shadow: 0px 0px 10px #cacaca;
    padding: 2rem;
  }
  .top-courses .top-courses-container .top-courses-list {
    flex-direction: row;
    margin: 0;
    margin-top: 35px;
    justify-content: space-between;
  }
  .top-courses .top-courses-container .top-courses-list .course-item {
    margin-bottom: 0;
    width: 31%;
  }
  .top-courses .top-courses-container .top-courses-list .course-item .course-name {
    min-height: 64px;
  }
  .courses-section {
    padding: 3rem 2rem;
    padding-top: 0;
  }
  .courses-section .courses-container .courses-list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
  }
  .courses-section .courses-container .courses-list .courses-content {
    justify-content: flex-start;
    width: 30%;
    margin-right: 30px;
  }
  .courses-section .courses-container .courses-list .courses-content:nth-child(3),
  .courses-section .courses-container .courses-list .courses-content:nth-child(6),
  .courses-section .courses-container .courses-list .courses-content:nth-child(9) {
    margin-right: 0;
  }
  .courses-section .courses-container .courses-list .courses-content:nth-child(11) {
    margin-right: 0;
  }
  .courses-section .courses-container .courses-list .courses-content:nth-child(7) {
    margin-bottom: 0;
  }
  .courses-section .courses-container .courses-list .courses-content:nth-child(10) {
    margin-bottom: 0;
  }
  .courses-section .courses-container .courses-list .courses-content .course-name {
    min-height: 96px;
  }
  .togaf-training {
    padding: 3rem 2rem;
  }
  .togaf-training .training-container .training-content .training-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .togaf-training .training-container .training-content .training-list li {
    width: 47%;
  }
  .togaf-training .training-container .training-content .training-list li:nth-last-child(2) {
    margin-bottom: 0;
  }
  .togaf-training .training-container .certification-content {
    margin-top: 3rem;
  }
  .togaf-training .training-container .certification-content .certification-img {
    display: flex;
    width: 500px;
    margin: auto;
    margin-top: 1.2rem;
  }
  .togaf-packages {
    padding: 3rem 2rem;
  }
  .togaf-packages .package-container .packages-list {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .togaf-packages .package-container .packages-list .package-content {
    width: 46%;
  }
  .togaf-packages .package-container .packages-list .package-content .package-heading {
    min-height: 100px;
  }
  .togaf-packages .package-container .packages-list .package-content .package-heading h3 {
    min-height: 50px;
  }
  .testimonial-chooseus {
    padding: 3rem 2rem;
  }
  .testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-list .owl-nav {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .testimonial-chooseus .main-testi-choose .main-choose-us .choose-list .choose {
    width: 47%;
  }
  .testimonial-chooseus .main-testi-choose .main-choose-us .choose-list .choose:nth-last-child(2) {
    margin-bottom: 0;
  }
  .togaf-clients {
    padding: 3rem 2rem;
  }
  .togaf-clients .clients-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .togaf-clients .clients-container .clients-left {
    width: 50%;
  }
  .togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-right {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  .togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-right .delivery-method .list {
    flex-direction: row;
    padding: 1rem;
    width: 100%;
    margin-top: 0.8rem;
    justify-content: flex-start;
  }
  .togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-right .delivery-method .list p {
    font-size: 15px;
    margin-left: .5rem;
    margin-top: 0;
    text-align: left;
    min-height: auto;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-right .delivery-method .list:first-child {
    margin-top: 0;
  }
  .togaf-clients .clients-container .clients-right {
    width: 46%;
  }
  .togaf-clients .clients-container .clients-right .form {
    align-self: center;
    margin-top: 0;
    position: sticky;
    top: 60px;
    margin-bottom: 0;
  }
  .togaf-clients .limited-offer {
    flex-direction: row;
    justify-content: space-between;
    border-radius: 0;
  }
  .togaf-clients .limited-offer .offer-content {
    flex-direction: row;
    width: calc(100% - 180px);
    align-items: flex-start;
  }
  .togaf-clients .limited-offer .offer-content span {
    width: 130px;
  }
  .togaf-clients .limited-offer .offer-content .offer-txt {
    text-align: left;
    width: calc(100% - 130px);
  }
  .togaf-clients .limited-offer .togaf-buttons {
    margin-top: 0;
  }
  .togaf-virtual {
    padding: 3rem 2rem;
    background-image: none;
    padding-top: 0;
  }
  .togaf-virtual .virtual-main .virtual-left .togaf-heading h2 {
    color: #000000;
  }
  .togaf-virtual .virtual-main .virtual-left .togaf-heading h2::before {
    background-image: url(/_public/images/togaf-offers/heading-bg.svg);
  }
  .togaf-virtual .virtual-main .virtual-left .togaf-heading p {
    margin-top: 1rem;
    color: #000000;
  }
  .togaf-virtual .virtual-main .virtual-left .platform-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 1rem;
  }
  .togaf-virtual .virtual-main .virtual-left .platform-list .platforms {
    width: 320px;
    flex-direction: row;
    box-shadow: none;
    justify-content: flex-start;
    position: relative;
    background-image: url(/_public/images/togaf-offers/text-before.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right;
    height: 130px;
    background-color: transparent;
    padding-left: 3rem;
    padding-top: 6px;
  }
  .togaf-virtual .virtual-main .virtual-left .platform-list .platforms::before {
    position: absolute;
    content: '';
    left: -18px;
    top: 0;
    background-image: url(/_public/images/togaf-offers/virtual-circle.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .togaf-virtual .virtual-main .virtual-left .platform-list .platforms img {
    width: 30px;
    height: 30px;
  }
  .togaf-virtual .virtual-main .virtual-left .platform-list .platforms .text-content {
    align-items: center;
    margin-left: 0.5rem;
    margin-top: 0;
  }
  .togaf-virtual .virtual-main .virtual-left .platform-list .platforms .text-content h3 {
    font-size: 16px;
    color: #007C66;
    margin-top: 10px;
  }
  .togaf-virtual .virtual-main .virtual-left .platform-list .platforms .text-content p {
    font-size: 13px;
  }
  .togaf-virtual .virtual-main .virtual-right {
    display: flex;
    margin-top: 2rem;
    align-items: center;
    flex-direction: column;
    height: 100%;
  }
  .togaf-virtual .virtual-main .virtual-right .framework-img {
    display: flex;
    width: 600px;
    height: 100%;
    margin: auto;
    margin-top: 1rem;
  }
  .togaf-virtual .virtual-main .virtual-right .framework-img img {
    width: 100%;
    height: 100%;
  }
  .togaf-faq {
    padding: 3rem 2rem;
    padding-bottom: 2rem;
  }
  .togaf-faq .faq-main {
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: space-between;
  }
  .togaf-faq .faq-main .faq {
    width: 48%;
  }
  .togaf-faq .faq-main .faq:nth-last-child(2) {
    margin-bottom: 0;
  }
  .togaf-footer {
    padding: 4rem 3rem;
    background-image: url('/_public/images/togaf-offers/footer-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding-bottom: 2rem;
    background-color: whitesmoke;
  }
  .togaf-footer .togaf-heading {
    align-items: flex-start;
    margin-bottom: 0;
  }
  .togaf-footer .contact-info {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .togaf-footer .contact-info .contact-list {
    flex-direction: column;
    margin-top: 20px;
    align-items: flex-start;
  }
  .togaf-footer .contact-info .contact-list a {
    font-size: 16px;
  }
  .togaf-footer .contact-info .togaf-buttons {
    margin-top: 0;
  }
}
@media (min-width : 1024px) {
  .togaf-heading h2 {
    font-size: 28px;
  }
  .banner-section {
    background-color: transparent;
    background-image: url("/_public/images/togaf-offers/banner-bg.png");
    background-repeat: no-repeat;
    background-size: 95% 100%;
    position: relative;
  }
  .banner-section::before {
    position: absolute;
    content: '';
    background-image: url(/_public/images/togaf-offers/animated-circle.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    width: 130px;
    height: 130px;
    top: 12%;
    left: 40%;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    transform-origin: center;
    animation-duration: 1.5s;
    animation-delay: 0.1s;
    animation-name: pulse;
  }
  .banner-section .logo-container .togaf-container .menu {
    display: none;
  }
  .banner-section .logo-container .togaf-container .menu-links {
    width: 75%;
    display: flex;
    align-items: center;
    background: 0 0;
    max-height: unset;
    overflow: unset;
    position: relative;
    box-shadow: none;
    justify-content: flex-end;
  }
  .banner-section .logo-container .togaf-container .menu-links .menu-toggle {
    display: none;
  }
  .banner-section .logo-container .togaf-container .menu-links ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
  }
  .banner-section .logo-container .togaf-container .menu-links ul .links-li {
    border-bottom: none;
    border-bottom-style: none;
    margin-right: 1rem;
    padding: 0;
    position: relative;
  }
  .banner-section .logo-container .togaf-container .menu-links ul .links-li::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: #FFF;
    height: 2px;
    transition: all 0.5s;
  }
  .banner-section .logo-container .togaf-container .menu-links ul .links-li:hover::after {
    width: 100%;
  }
  .banner-section .logo-container .togaf-container .menu-links ul .links-li:last-child {
    display: flex;
    margin-top: 0;
    margin-right: 0;
  }
  .banner-section .logo-container .togaf-container .menu-links ul .links-li:last-child:hover::after {
    content: none;
  }
  .banner-section .logo-container .togaf-container .menu-links ul .links-li .link {
    font-weight: 600;
    transition: none;
    color: #FFF;
  }
  .banner-section .logo-container .togaf-container .menu-links ul .togaf-buttons .btn-white {
    margin-right: 1rem;
  }
  .banner-section .banner-container .banner-content {
    width: 50%;
  }
  .banner-section .banner-container .requirement-image {
    width: 42%;
  }
  .banner-section .banner-container .requirement-image .mgmt-mob {
    display: none;
  }
  .banner-section .banner-container .requirement-image .mgmt-ipad {
    display: flex;
  }
  .togaf-facts-training {
    position: relative;
  }
  .togaf-facts-training::before {
    content: '';
    position: absolute;
    background-image: url(/_public/images/togaf-offers/facts-bg.png);
    background-size: 100% 30%;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    top: 10px;
    left: 0;
    z-index: -1;
  }
  .togaf-facts-training .togaf-facts {
    background: none;
  }
  .togaf-facts-training .togaf-facts .facts-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .togaf-facts-training .togaf-facts .facts-container .togaf-heading {
    width: 41%;
    margin-bottom: 0;
  }
  .togaf-facts-training .togaf-facts .facts-container .togaf-heading h2 {
    text-align: left;
    color: #FFF;
  }
  .togaf-facts-training .togaf-facts .facts-container .togaf-heading h2::before {
    background-position: left;
    background-image: url(/_public/images/togaf-offers/heading-white.svg);
  }
  .togaf-facts-training .togaf-facts .facts-container .togaf-heading p {
    text-align: left;
    color: #FFF;
  }
  .togaf-facts-training .togaf-facts .facts-container .facts-list {
    margin-top: 0;
    width: 59%;
    justify-content: center;
  }
  .togaf-facts-training .togaf-facts .facts-container .facts-list .facts-info {
    border: none;
    align-items: flex-start;
  }
  .togaf-facts-training .togaf-facts .facts-container .facts-list .facts-info .image {
    flex-direction: row;
  }
  .togaf-facts-training .togaf-facts .facts-container .facts-list .facts-info .image h3 {
    font-size: 32px;
    margin-left: 0.4rem;
    color: #FFF;
  }
  .togaf-facts-training .togaf-facts .facts-container .facts-list .facts-info p {
    margin-top: 0.4rem;
    color: #FFF;
  }
  .togaf-started {
    display: flex!important;
    padding-top: 2rem;
    padding-bottom: 1rem;
  }
  .top-courses .top-courses-container {
    width: 80%;
    margin: auto;
  }
  .courses-section {
    padding-top: 1rem;
  }
  .courses-section .courses-container .courses-list .courses-content {
    width: 22%;
  }
  .courses-section .courses-container .courses-list .courses-content:nth-child(3),
  .courses-section .courses-container .courses-list .courses-content:nth-child(6),
  .courses-section .courses-container .courses-list .courses-content:nth-child(9) {
    margin-right: 30px;
  }
  .courses-section .courses-container .courses-list .courses-content:nth-child(4),
  .courses-section .courses-container .courses-list .courses-content:nth-child(8) {
    margin-right: 0;
  }
  .courses-section .courses-container .courses-list .courses-content:nth-child(5),
  .courses-section .courses-container .courses-list .courses-content:nth-child(6),
  .courses-section .courses-container .courses-list .courses-content:nth-child(7) {
    margin-bottom: 0;
  }
  .togaf-training .training-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .togaf-training .training-container .training-content {
    width: 47%;
  }
  .togaf-training .training-container .certification-content {
    width: 47%;
    margin-top: 0;
  }
  .togaf-training .training-container .certification-content .certification-img {
    width: auto;
  }
  .togaf-packages {
    padding-bottom: 2rem;
  }
  .togaf-packages .package-container .packages-list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 90%;
    margin: auto;
  }
  .togaf-packages .package-container .packages-list .package-content {
    width: 46%;
    margin-bottom: 0;
    margin-right: 4rem;
  }
  .togaf-packages .package-container .packages-list .package-content:last-child {
    margin-right: 0;
  }
  .togaf-packages .package-container .packages-list .package-content ul {
    min-height: 180px;
  }
  .testimonial-chooseus {
    padding: 7rem 2rem;
    background-image: url('/_public/images/togaf-offers/testimonial-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
  }
  .testimonial-chooseus .main-testi-choose {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
  .testimonial-chooseus .main-testi-choose .main-testimonial {
    width: 50%;
  }
  .testimonial-chooseus .main-testi-choose .main-testimonial .togaf-heading {
    margin-bottom: 2rem;
  }
  .testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-client {
    display: flex;
    flex-direction: row;
    position: relative;
  }
  .testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-client .client-image {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 46px;
    left: 21px;
    border-radius: 50%;
  }
  .testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-client .client-image:nth-child(2) {
    top: 13px;
    left: 111px;
  }
  .testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-client .client-image:nth-child(3) {
    top: 0px;
    left: 210px;
  }
  .testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-client .client-image:nth-child(4) {
    top: 13px;
    left: 300px;
  }
  .testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-client .client-image:last-child {
    top: 46px;
    left: 385px;
  }
  .testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-list {
    margin-top: 4.5rem;
  }
  .testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-list .owl-nav .owl-prev {
    position: absolute;
    top: 160px;
    left: 40px;
  }
  .testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-list .owl-nav .owl-next {
    position: absolute;
    top: 160px;
    right: 21px;
  }
  .testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-list .testimonial {
    width: 65%;
    margin: auto;
  }
  .testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-list .testimonial .name-img span {
    display: none;
  }
  .testimonial-chooseus .main-testi-choose .main-choose-us {
    width: 45%;
    margin-top: 0;
  }
  .testimonial-chooseus .main-testi-choose .main-choose-us .choose-list .choose {
    width: 48%;
  }
  .testimonial-chooseus .main-testi-choose .main-choose-us .choose-list .choose:nth-child(3),
  .testimonial-chooseus .main-testi-choose .main-choose-us .choose-list .choose:nth-child(4) {
    margin-bottom: 0;
  }
  .testimonial-chooseus .main-testi-choose .main-choose-us .choose-list .choose .choose-content h3 {
    min-height: 49px;
    display: flex;
    justify-content: center;
  }
  .testimonial-chooseus .main-testi-choose .main-choose-us .choose-list .choose .choose-content p {
    min-height: 100px;
  }
  .testimonial-chooseus .main-testi-choose .main-choose-us .choose-list .choose .choose-img {
    left: 80px;
  }
  .togaf-clients {
    padding-top: 2rem;
  }
  .togaf-clients .clients-container {
    margin-top: 0;
  }
  .togaf-clients .clients-container .clients-left {
    width: 56%;
  }
  .togaf-clients .clients-container .clients-left .clients-info {
    display: flex;
    flex-direction: column;
  }
  .togaf-clients .clients-container .clients-left .clients-info .togaf-heading {
    margin-bottom: 3.5rem;
  }
  .togaf-clients .clients-container .clients-left .clients-info .clients-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }
  .togaf-clients .clients-container .clients-left .clients-info .clients-list .client-name {
    margin-right: 1.5rem;
  }
  .togaf-clients .clients-container .clients-left .clients-info .clients-list .client-name:nth-child(even) {
    margin-right: 1.5rem;
    margin-left: 0.8rem;
  }
  .togaf-clients .clients-container .clients-left .clients-info .clients-list .client-name:nth-child(5) {
    margin-right: 0;
    margin-bottom: 0rem;
    position: relative;
    bottom: 27px;
    right: 0;
  }
  .togaf-clients .clients-container .clients-left .togaf-budget {
    background: none;
    position: relative;
  }
  .togaf-clients .clients-container .clients-left .togaf-budget:before {
    content: '';
    position: absolute;
    background-image: url(/_public/images/togaf-offers/budget-bg.png);
    background-repeat: no-repeat;
    top: 0;
    left: -15%;
    height: 100%;
    width: 100%;
    background-size: 100% 100%;
    z-index: -1;
  }
  .togaf-clients .clients-container .clients-left .togaf-budget .budget-container {
    flex-direction: row;
    width: 100%;
  }
  .togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-left {
    display: flex;
    flex-direction: column;
    width: 60%;
  }
  .togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-left p {
    width: 88%;
  }
  .togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-left .budget-list li {
    width: 72%;
  }
  .togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-right {
    width: 40%;
    align-items: center;
  }
  .togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-right .delivery-method {
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin-top: 0;
    width: 100%;
  }
  .togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-right .delivery-method .list {
    justify-content: flex-start;
    border: none;
    background-color: transparent;
    flex-direction: row;
  }
  .togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-right .delivery-method .list .white-img {
    display: none;
  }
  .togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-right .delivery-method .list .blue-img {
    display: flex;
  }
  .togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-right .delivery-method .list p {
    line-height: 1.4;
    color: #000000;
    margin-top: 0;
  }
  .togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-right .delivery-method .list:nth-child(3),
  .togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-right .delivery-method .list:nth-child(4) {
    margin-top: 0.8rem;
  }
  .togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-right .delivery-method .list:nth-child(2) {
    margin-left: -0.8rem;
  }
  .togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-right .delivery-method .list:nth-child(3) {
    margin-left: 1rem;
  }
  .togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-right .delivery-method .list:nth-child(4) {
    margin-left: 1.5rem;
  }
  .togaf-clients .clients-container .clients-right {
    width: 400px;
  }
  .togaf-clients .limited-offer {
    width: 80%;
    margin: 0 auto;
    padding: 1rem 2.5rem;
    margin-top: 3.5rem;
    position: relative;
    z-index: 1;
  }
  .togaf-clients .limited-offer::before {
    content: '';
    width: 75px;
    height: 113px;
    position: absolute;
    left: -38px;
    top: -34px;
    background-image: url(/_public/images/togaf-offers/limit-top.png);
    background-position: left;
    background-repeat: no-repeat;
    z-index: -1;
  }
  .togaf-clients .limited-offer::after {
    content: '';
    width: 75px;
    height: 113px;
    position: absolute;
    right: -38px;
    bottom: -34px;
    background-image: url(/_public/images/togaf-offers/limit-bottom.png);
    background-position: right;
    background-repeat: no-repeat;
    z-index: -1;
  }
  .togaf-virtual {
    padding-top: 1rem;
  }
  .togaf-virtual .virtual-main .virtual-left .togaf-heading {
    align-items: center;
  }
  .togaf-virtual .virtual-main .virtual-left .platform-list {
    width: 80%;
    margin: auto;
  }
  .togaf-footer .contact-info .contact-list {
    flex-direction: row;
    margin-top: 20px;
    align-items: flex-start;
  }
  .togaf-footer .contact-info .contact-list a {
    margin-right: 1rem;
  }
  .togaf-footer .contact-info .contact-list a:last-child {
    margin-right: 0;
  }
}
@media (min-width: 1024px) and (-ms-high-contrast: none),
(-ms-high-contrast: active) {
  .banner-section .logo-container .togaf-container .menu-links ul .links-li {
    margin-right: 0.8rem;
  }
}
@media (min-width : 1366px) {
  .togaf-container {
    width: 1200px;
    margin: 0 auto;
  }
  .togaf-buttons .btn-red,
  .togaf-buttons .btn-white,
  .togaf-buttons .btn-green {
    font-size: 18px;
  }
  .togaf-buttons .btn-red img,
  .togaf-buttons .btn-white img,
  .togaf-buttons .btn-green img {
    width: 20px;
    height: 22px;
  }
  .togaf-heading h2 {
    font-size: 32px;
  }
  .banner-section {
    padding: 4rem 0rem;
    padding-top: 2rem;
  }
  .banner-section .banner-container .requirement-image {
    width: 38%;
    margin-top: 1.2rem;
  }
  .togaf-facts-training::before {
    width: 88%;
    top: 13px;
  }
  .togaf-facts-training:after {
    content: '';
    position: absolute;
    width: 31%;
    height: 64%;
    top: 9px;
    right: 0;
    background-image: url(/_public/images/togaf-offers/facts-circle.png);
    background-size: 100%;
    background-repeat: no-repeat;
    z-index: -1;
  }
  .togaf-facts-training .togaf-facts {
    padding: 4rem 0rem;
  }
  .togaf-facts-training .togaf-facts .facts-container {
    width: 82%;
  }
  .togaf-facts-training .togaf-facts .facts-container .togaf-heading h2 {
    font-size: 28px;
  }
  .togaf-facts-training .togaf-facts .facts-container .facts-list .facts-info {
    padding-bottom: 0;
  }
  .togaf-facts-training .togaf-overview-delivery {
    padding: 4rem 0rem;
    padding-top: 1rem;
    position: relative;
  }
  .togaf-facts-training .togaf-overview-delivery::before {
    content: '';
    background-image: url(/_public/images/togaf-offers/training-bg.svg);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: left;
    position: absolute;
    width: 285px;
    left: -88px;
    height: 99%;
  }
  .togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list {
    justify-content: flex-start;
  }
  .togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list .delivery-info {
    min-height: 100px;
  }
  .togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list .delivery-info:nth-child(4),
  .togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list .delivery-info:nth-child(5) {
    margin-top: 0;
  }
  .togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list .delivery-info img {
    display: none;
  }
  .togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list .delivery-info:nth-child(2) .content h3, .togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list .delivery-info:nth-child(4) .content h3 {
    justify-content: flex-start;
  }
  .togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list .delivery-info:nth-child(3) .content h3, .togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list .delivery-info:nth-child(5) .content h3 {
      justify-content: flex-end;
  }
  .togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list .circle {
    display: flex;
  }
  .togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list .circle img {
    width: 28px;
    height: 28px;
    position: absolute;
  }
  .togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list .circle img:nth-child(1) {
    top: -11px;
    left: -20px;
  }
  .togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list .circle img:nth-child(2) {
    top: -11px;
    right: -20px;
  }
  .togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list .circle img:nth-child(3) {
    bottom: -11px;
    left: -18px;
  }
  .togaf-facts-training .togaf-overview-delivery .overview-delivery-container .delivery-container .delivery-list .circle img:nth-child(4) {
    bottom: -11px;
    right: -22px;
    filter: invert(1);
    width: 25px;
    height: 25px;
  }
  .togaf-started {
    padding: 4rem 0rem;
    padding-top: 0rem;
    padding-bottom: 1rem;
  }
  .top-courses {
    padding: 4rem 0rem;
  }
  .top-courses .top-courses-container {
    padding: 2.5rem 3rem;
  }
  .top-courses .top-courses-container .top-courses-list .course-item {
    width: 29%;
  }
  .top-courses .top-courses-container .top-courses-list .course-item .course-name {
    min-height: 46px;
  }
  .courses-section {
    padding: 4rem 0rem;
    padding-top: 0;
  }
  .courses-section .courses-container .courses-list .courses-content:nth-child(4),
  .courses-section .courses-container .courses-list .courses-content:nth-child(8) {
    margin-right: 0;
  }
  .courses-section .courses-container .courses-list .courses-content .course-name {
    min-height: 72px;
  }
  .togaf-training {
    padding: 4rem 0rem;
  }
  .togaf-packages {
    position: relative;
    padding: 4rem 0rem;
  }
  .togaf-packages::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(/_public/images/togaf-offers/package-bg.png);
    background-size: 105%,15%;
    background-repeat: no-repeat;
    background-position: calc(-41% - 88px) calc(75% - 37px);
    opacity: 0.29;
  }
  .togaf-packages .package-container .togaf-heading {
    margin-bottom: 2.6rem;
  }
  .togaf-packages .package-container .packages-list {
    position: relative;
    z-index: 1;
  }
  .togaf-packages .package-container .packages-list::before {
    content: '';
    width: 95px;
    height: 118px;
    position: absolute;
    left: -42px;
    top: -35px;
    background-image: url(/_public/images/togaf-offers/top-package.png);
    background-position: left;
    background-repeat: no-repeat;
    z-index: -1;
  }
  .togaf-packages .package-container .packages-list::after {
    content: '';
    width: 95px;
    height: 118px;
    position: absolute;
    right: -43px;
    bottom: -36px;
    background-image: url(/_public/images/togaf-offers/bottom-package.png);
    background-position: right;
    background-repeat: no-repeat;
    z-index: -1;
  }
  .togaf-packages .package-container .packages-list .package-content {
    width: 46%;
  }
  .togaf-packages .package-container .packages-list .package-content .package-heading {
    min-height: 60px;
  }
  .togaf-packages .package-container .packages-list .package-content .package-heading h3 {
    min-height: auto;
  }
  .testimonial-chooseus {
    padding: 7rem 0;
  }
  .testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-client {
    display: flex;
  }
  .testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-client .client-image:nth-child(1) {
    top: 59px;
    left: 56px;
  }
  .testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-client .client-image:nth-child(2) {
    top: 13px;
    left: 156px;
  }
  .testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-client .client-image:nth-child(3) {
    top: 0;
    left: 267px;
  }
  .testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-client .client-image:nth-child(4) {
    top: 16px;
    left: 370px;
  }
  .testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-client .client-image:last-child {
    top: 59px;
    left: 466px;
  }
  .testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-list .owl-nav .owl-prev,
  .testimonial-chooseus .main-testi-choose .main-testimonial .testimonial-list .owl-nav .owl-next {
    top: 128px;
  }
  .testimonial-chooseus .main-testi-choose .main-choose-us .choose-list .choose .choose-img {
    left: 107px;
  }
  .testimonial-chooseus .main-testi-choose .main-choose-us .choose-list .choose .choose-content p {
    min-height: auto;
  }
  .togaf-clients {
    padding: 4rem 0rem;
    padding-top: 2rem;
  }
  .togaf-clients .clients-container .clients-left {
    width: 63%;
  }
  
  .togaf-clients .clients-container .clients-left .clients-info .clients-list {
    width: 70%;
    margin: auto;
  }
  .togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-left {
    width: 64%;
  }
  .togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-left .budget-list li {
    width: 89%;
  }
  .togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-right {
    width: 36%;
  }
  .togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-right .delivery-method .list:nth-child(1) {
    margin-left: -2rem;
  }
  .togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-right .delivery-method .list:nth-child(2) {
    margin-left: -3rem;
  }
  .togaf-clients .clients-container .clients-left .togaf-budget .budget-container .budget-right .delivery-method .list:nth-child(3) {
    margin-left: -1.5rem;
  }
  .togaf-clients .clients-container .clients-right .form .togaf-heading {
    margin-bottom: 2rem;
  }
  .togaf-clients .clients-container .clients-right .form .togaf-heading h2 {
    font-size: 28px;
  }
  .togaf-clients .limited-offer {
    width: 64%;
  }
  .togaf-virtual {
    padding: 4rem 0rem;
    background-image: url(virtual-section-background.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: inherit;
    padding-top: 1rem;
  }
  .togaf-virtual .virtual-main {
    flex-direction: row;
    justify-content: space-between;
  }
  .togaf-virtual .virtual-main .virtual-left {
    width: 56%;
  }
  .togaf-virtual .virtual-main .virtual-left .togaf-heading {
    align-items: flex-start;
  }
  .togaf-virtual .virtual-main .virtual-left .togaf-heading h2::before {
    background-position: left;
  }
  .togaf-virtual .virtual-main .virtual-left .togaf-heading p {
    text-align: left;
  }
  .togaf-virtual .virtual-main .virtual-left .platform-list {
    width: 100%;
  }
  .togaf-virtual .virtual-main .virtual-right {
    width: 42%;
    margin-top: 0;
  }
  .togaf-virtual .virtual-main .virtual-right .framework-img {
    width: 504px;
  }
  .togaf-virtual .virtual-main .virtual-right .framework-img img {
    width: 100%;
  }
  .togaf-faq {
    padding: 4rem 0rem;
    padding-bottom: 2.5rem;
  }
  .togaf-footer {
    padding: 4rem 0;
  }
}
@media (min-width : 1500px) {
  .togaf-facts-training::before {
    top: 30px;
  }
  .togaf-facts-training:after {
    height: 93%;
  }
  .togaf-clients .clients-container .clients-left .togaf-budget::before {
    left: 0;
    background-size: 80% 100%;
  }
}
@media (min-width : 1600px) {
  .banner-section .banner-container .requirement-image {
    margin-top: 2rem;
  }
  .togaf-facts-training::before {
    top: 45px;
  }
  .togaf-facts-training .togaf-facts .facts-container {
    margin-top: 1rem;
  }
}
@media (min-width : 1900px) {
  .banner-section .banner-container .requirement-image {
    margin-top: 3rem;
  }
  .togaf-facts-training::before {
    top: 45px;
  }
  .togaf-facts-training .togaf-facts .facts-container {
    margin-top: 2.5rem;
  }
}