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

body {
  margin: 0;
  padding: 0;
}
.archimate-main * {
  box-sizing: border-box;
  font-family: Roboto;
}
.archimate-main p {
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
  text-align: left;
  color: #707070;
}
.archimate-main p strong,
.archimate-main p b {
  font-weight: 700;
}
.archimate-main a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.archimate-main h1,
.archimate-main h2,
.archimate-main h3,
.archimate-main h4 {
  margin: 0;
}
.archimate-main h2 {
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
}
.archimate-main ul,
.archimate-main li {
  padding: 0;
  margin: 0;
}
.archimate-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;
}
/* 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: #0D555B;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #0D555B;
}
.form {
  display: flex;
  flex-direction: column;
}
.form .input-container {
  display: flex;
  position: relative;
  margin-bottom: 1rem;
  width: 100%;
}
.form .input-container .input-feild,
.form .input-container textarea {
  width: 100%;
  border: none;
  padding: 0.7rem;
  outline: 0;
  border-radius: 14px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  font-weight: 500;
  color: #000000;
}
.form .input-container textarea {
  height: 75px;
  resize: none;
  overflow: auto;
}
.form .input-container ::-webkit-input-placeholder {
  /* Edge */
  color: #95989A;
}
.form .error-message .input-feild {
  border: 2px solid red;
}
.form .error-message ::-webkit-input-placeholder {
  /* Edge */
  color: red;
}
.form .form-consent {
  display: flex;
  color: #000000;
  font-size: 11px;
  margin-bottom: 0.4rem;
}
.form .form-consent:last-child {
  margin-bottom: 0;
}
.form .form-consent label {
  display: flex;
  align-items: center;
  margin-left: 0.3rem;
  width: 97%;
}
.form .form-consent p {
  color: #000000;
  line-height: 1.4;
  font-size: 11px;
}
.form .form-consent a {
  color: orange;
  font-weight: bold;
}
.form .consent-error,
.form .consent-error-other {
  margin-bottom: 0.5rem;
}
.form .consent-error p,
.form .consent-error-other p {
  color: red;
  line-height: 1.4;
  font-size: 11px;
}
.archimate-main .flex-container {
  display: flex;
}
.archimate-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.archimate-buttons .btn-orange,
.archimate-buttons .btn-white,
.archimate-buttons .btn-green {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 8px;
  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: 164px;
  z-index: 1;
  overflow: hidden;
}
.archimate-buttons .btn-orange img,
.archimate-buttons .btn-white img,
.archimate-buttons .btn-green img {
  width: 18px;
  height: 19px;
  margin-right: 6px;
}
.archimate-buttons .btn-orange::before,
.archimate-buttons .btn-white::before,
.archimate-buttons .btn-green::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  padding: 50%;
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0) scale(0);
  z-index: -1;
  transition: all 0.4s linear;
}
.archimate-buttons .btn-orange:hover::before,
.archimate-buttons .btn-white:hover::before,
.archimate-buttons .btn-green:hover::before {
  transform: translate3d(-50%, -50%, 0) scale(1.5);
}
.archimate-buttons .btn-green {
  background-image: linear-gradient(#137572 65%, #0D555B);
  color: #FFF;
}
.archimate-buttons .btn-green::before {
  background-color: #fd8a1f;
}
.archimate-buttons .btn-orange {
  background: linear-gradient(#FF9B3E 65%, #E56D00);
  color: #FFF;
}
.archimate-buttons .btn-orange::before {
  background-color: #0D555B;
}
.archimate-buttons .btn-white {
  background: #FFF;
  color: #0D555B;
}
.archimate-buttons .btn-white::before {
  background-color: #ff8257;
}
.archimate-heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.archimate-heading h2 {
  font-size: 22px;
  padding-bottom: 10px;
  color: #000000;
  position: relative;
}
.archimate-heading h2::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/archimate-offers/heading-blue.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/archimate-offers/heading-white.svg);
  background-position: center;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes buzz {
  50% {
    transform: translateX(1px) rotate(2deg);
  }
  100% {
    transform: translateX(-1px) rotate(-2deg);
  }
}
@keyframes circleMover {
  0%,
  100% {
    -webkit-transform: translate(0, 0) rotate(0);
    transform: translate(0, 0) rotate(0);
  }
  20%,
  60% {
    -webkit-transform: translate(20px, 40px) rotate(180deg);
    transform: translate(20px, 40px) rotate(180deg);
  }
  30%,
  80% {
    -webkit-transform: translate(40px, 60px) rotate(0deg);
    transform: translate(40px, 60px) rotate(0deg);
  }
}
@keyframes circleMover2 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  20%,
  60% {
    transform: translate(-20px, -30px) rotate(180deg);
  }
  30%,
  80% {
    transform: translate(10px, 30px) rotate(0deg);
  }
}
@keyframes rotate2 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.archimate-banner {
  flex-direction: column;
  padding: 3rem 1.5rem;
  padding-top: 1.5rem;
  background-image: linear-gradient(#137572 65%, #0D555B);
}
.archimate-banner .logo-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  align-items: center;
}
.archimate-banner .logo-container .archimate-container {
  display: flex;
  justify-content: space-between;
}
.archimate-banner .logo-container .archimate-container .tka-logo {
  display: flex;
  max-width: 200px;
}
.archimate-banner .logo-container .archimate-container .tka-logo img {
  width: 100%;
  height: 100%;
}
.archimate-banner .logo-container .archimate-container .menu {
  display: flex;
  z-index: 1;
  margin-left: auto;
  align-items: center;
}
.archimate-banner .logo-container .archimate-container .menu img {
  width: 22px;
  height: 17px;
}
.archimate-banner .logo-container .archimate-container .menu-links {
  width: 0;
  transition: all 0.5s;
  height: fit-content;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 15;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.098);
}
.archimate-banner .logo-container .archimate-container .menu-links .menu-toggle {
  color: #000000;
}
.archimate-banner .logo-container .archimate-container .menu-links .menu-toggle img {
  width: 15px;
  margin-right: 5px;
  height: 15px;
}
.archimate-banner .logo-container .archimate-container ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 0;
}
.archimate-banner .logo-container .archimate-container ul .links-li {
  padding: 8px 0;
  border-bottom: 1px dotted #000000;
}
.archimate-banner .logo-container .archimate-container ul .links-li:nth-last-child(2) {
  border-bottom: none;
  padding-bottom: 0;
}
.archimate-banner .logo-container .archimate-container ul .links-li:last-child {
  display: none;
}
.archimate-banner .logo-container .archimate-container ul .links-li .link {
  font-size: 14px;
  color: #000000;
  text-decoration: none;
}
.archimate-banner .logo-container .archimate-container ul .archimate-buttons {
  display: none;
}
.archimate-banner .logo-container .archimate-container .menu.active {
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.047);
}
.archimate-banner .logo-container .archimate-container .menu.active + .menu-links {
  padding: 15px;
  width: 75%;
}
.archimate-banner .logo-container .archimate-container .menu.active + .menu-links .menu-toggle {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.archimate-banner .archimate-sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 4;
  box-shadow: 0 0 10px grey;
  background-color: #0D555B;
  padding: 1rem 1.5rem;
  transition: 1s;
}
.archimate-banner .archimate-sticky .prince2-container {
  border-radius: 0!important;
  padding: 0!important;
  box-shadow: none!important;
}
.archimate-banner .archimate-sticky-up {
  top: -100px;
}
.archimate-banner .archimate-sticky-down {
  top: 0;
  left: 0;
}
.archimate-banner .banner-container {
  display: flex;
  flex-direction: column;
}
.archimate-banner .banner-container .banner-content {
  display: flex;
  flex-direction: column;
}
.archimate-banner .banner-container .banner-content .archimate-logo {
  width: 150px;
}
.archimate-banner .banner-container .banner-content .archimate-logo img {
  width: 100%;
}
.archimate-banner .banner-container .banner-content h1 {
  display: flex;
  align-items: flex-start;
  font-size: 24px;
  color: #fff;
  margin: 17px 0 .2rem 0;
  width: 100%;
}
.archimate-banner .banner-container .banner-content h1 img {
  width: 35px;
  margin-right: 10px;
}
.archimate-banner .banner-container .banner-content p {
  color: #FFF;
}
.archimate-banner .banner-container .banner-content .archimate-offer {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}
.archimate-banner .banner-container .banner-content .archimate-offer h3 {
  display: flex;
  flex-direction: row;
  align-items: center;
  color: #FFF;
}
.archimate-banner .banner-container .banner-content .archimate-offer h3 img {
  width: 22px;
  margin-right: 5px;
  animation: buzz 0.2s infinite;
  transform: perspective(1px) translateZ(0);
}
.archimate-banner .banner-container .banner-content .archimate-offer .countdown-offer {
  display: flex;
  flex-direction: row;
  margin-top: 1rem;
}
.archimate-banner .banner-container .banner-content .archimate-offer .countdown-offer .timer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-right: 1.2rem;
  position: relative;
}
.archimate-banner .banner-container .banner-content .archimate-offer .countdown-offer .timer::after {
  position: absolute;
  content: '';
  background-image: url("/_public/images/archimate-offers/timer-dots.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 10px;
  height: 40px;
  top: 0px;
  right: -14px;
}
.archimate-banner .banner-container .banner-content .archimate-offer .countdown-offer .timer:last-child {
  margin-right: 0;
}
.archimate-banner .banner-container .banner-content .archimate-offer .countdown-offer .timer:last-child::after {
  content: none;
}
.archimate-banner .banner-container .banner-content .archimate-offer .countdown-offer .timer .time {
  width: 55px;
  height: 55px;
  position: relative;
  z-index: 1;
}
.archimate-banner .banner-container .banner-content .archimate-offer .countdown-offer .timer .time::before {
  position: absolute;
  content: "";
  width: 56px;
  height: 56px;
  top: -3px;
  left: -3px;
  background-image: linear-gradient(to left top, #ff6c0a 70%, #fff 30%);
  border-radius: 50%;
  z-index: -1;
  animation: progress 3s  infinite linear ;
}
@keyframes progress {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.archimate-banner .banner-container .banner-content .archimate-offer .countdown-offer .timer .time span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  width: 50px;
  background-color: #0D555B;
  height: 50px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 50%;
  color: white;
}
.archimate-banner .banner-container .banner-content .archimate-buttons {
  justify-content: flex-start;
}
.archimate-banner .banner-container .banner-content .archimate-buttons .btn-orange::before {
  background-color: #FB9435;
}
.archimate-banner .banner-container .banner-content .archimate-buttons .btn-orange:hover {
  box-shadow: 2px 2px 13px #d9d9d9;
}
.archimate-banner .banner-container .banner-content .archimate-buttons .btn-orange:hover::before {
  background-color: #FB9435;
}
.archimate-banner .banner-container .framework-image {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  margin-top: 2rem;
}
.archimate-banner .banner-container .framework-image .archimate-heading {
  justify-content: center;
  align-items: center;
}
.archimate-banner .banner-container .framework-image .archimate-heading h2 {
  color: #FFF;
  position: relative;
  z-index: 1;
  width: fit-content;
  text-align: center;
  padding-bottom: 0;
  font-size: 24px;
}
.archimate-banner .banner-container .framework-image .archimate-heading h2::after {
  position: absolute;
  content: none;
  background-image: url("/_public/images/archimate-offers/white-dots.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 10px;
  top: 9px;
  right: -30px;
  z-index: -1;
}
.archimate-banner .banner-container .framework-image .archimate-heading h2::before {
  position: absolute;
  content: none;
  background-image: url("/_public/images/archimate-offers/white-dots.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 22px;
  height: 10px;
  top: 9px;
  left: -30px;
  z-index: -1;
}
.archimate-banner .banner-container .framework-image img {
  width: 100%;
  height: 100%;
}
.archimate-facts {
  flex-direction: column;
  padding: 3rem 1.5rem;
}
.archimate-facts .facts-container {
  display: flex;
  flex-direction: column;
}
.archimate-facts .facts-container .archimate-heading p {
  text-align: center;
  margin-top: 1rem;
  width: 100%;
}
.archimate-facts .facts-container .facts-list {
  display: flex;
  flex-direction: column;
}
.archimate-facts .facts-container .facts-list .facts-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #000000;
  margin-bottom: 1rem;
}
.archimate-facts .facts-container .facts-list .facts-info .facts-image {
  min-width: 100px;
  min-height: 100px;
  display: flex;
  border-radius: 50%;
  position: relative;
}
.archimate-facts .facts-container .facts-list .facts-info .facts-image .facts-anime {
  top: 0%;
  left: 0%;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px solid #c2c6f7;
  animation: rotate2 4s linear infinite;
}
.archimate-facts .facts-container .facts-list .facts-info .facts-image .facts-anime::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-color: #fd8a1f;
  border-radius: 50%;
  box-shadow: 0 0 10px #e56d00cf;
  left: 4px;
  bottom: 6px;
}
.archimate-facts .facts-container .facts-list .facts-info .facts-image .image {
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: #FFF;
  border-radius: 50%;
  padding: 1rem;
  position: relative;
  margin: auto;
  margin-top: 1.2rem;
}
.archimate-facts .facts-container .facts-list .facts-info .facts-image .image::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  width: 80px;
  height: 80px;
  background-color: #6d999c;
  border-radius: 50%;
  z-index: -1;
}
.archimate-facts .facts-container .facts-list .facts-info .facts-image .image img {
  width: 30px;
}
.archimate-facts .facts-container .facts-list .facts-info .facts-content {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.archimate-facts .facts-container .facts-list .facts-info .facts-content h3 {
  margin-top: 0.2rem;
  font-size: 28px;
}
.archimate-facts .facts-container .facts-list .facts-info .facts-content h3 span {
  color: #fd8a1f;
  align-items: center;
  margin-left: 4px;
}
.archimate-facts .facts-container .facts-list .facts-info .facts-content p {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
  margin-top: 0.2rem;
  color: #000000;
  width: 100%;
}
.archimate-facts .facts-container .facts-list .facts-info:last-child {
  margin-bottom: 0;
}
.archimate-over-deliv {
  padding: 3rem 1.5rem;
  background-color: #F8F8F8;
}
.archimate-over-deliv .over-deliv-container {
  display: flex;
  flex-direction: column;
}
.archimate-over-deliv .over-deliv-container .over-container {
  display: flex;
  flex-direction: column;
}
.archimate-over-deliv .over-deliv-container .over-container h4 {
  margin: 15px 0;
  color: #363636;
  font-size: 14px;
}
.archimate-over-deliv .over-deliv-container .over-container ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
}
.archimate-over-deliv .over-deliv-container .over-container ul li {
  margin-bottom: 14px;
  position: relative;
  font-size: 14px;
  padding-left: 1.3rem;
  display: flex;
  align-items: center;
  color: #717171;
}
.archimate-over-deliv .over-deliv-container .over-container ul li::before {
  content: '';
  position: absolute;
  width: 11px;
  height: 12px;
  left: 0;
  top: 6px;
  background-image: url(/_public/images/archimate-offers/orange-circle.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.archimate-over-deliv .over-deliv-container .over-container ul li:hover {
  transition: 0.5s all;
}
.archimate-over-deliv .over-deliv-container .over-container ul li:hover::before {
  width: 15px;
  height: 15px;
  background-image: url(/_public/images/archimate-offers/tick.svg);
}
.archimate-over-deliv .over-deliv-container .over-container .archimate-buttons {
  align-self: flex-start;
}
.archimate-over-deliv .over-deliv-container .deliv-container {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
}
.archimate-over-deliv .over-deliv-container .deliv-container .deliv-methods {
  display: flex;
  flex-direction: column;
}
.archimate-over-deliv .over-deliv-container .deliv-container .deliv-methods .methods {
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 2.6rem;
  cursor: pointer;
  width: 272px;
}
.archimate-over-deliv .over-deliv-container .deliv-container .deliv-methods .methods:nth-last-child(1) {
  margin-bottom: 0;
}
.archimate-over-deliv .over-deliv-container .deliv-container .deliv-methods .methods .methods-img {
  display: flex;
  position: relative;
  top: -20px;
  z-index: 1;
}
.archimate-over-deliv .over-deliv-container .deliv-container .deliv-methods .methods .methods-img::before {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  left: -27px;
  top: -26px;
  background-image: url(/_public/images/archimate-offers/polygon.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}
.archimate-over-deliv .over-deliv-container .deliv-container .deliv-methods .methods .methods-img img {
  width: 28px;
  height: 28px;
}
.archimate-over-deliv .over-deliv-container .deliv-container .deliv-methods .methods .methods-img .blue-img {
  display: flex;
}
.archimate-over-deliv .over-deliv-container .deliv-container .deliv-methods .methods .methods-img .white-img {
  display: none;
}
.archimate-over-deliv .over-deliv-container .deliv-container .deliv-methods .methods .method-name {
  width: 100%;
  display: flex;
  flex-direction: row;
  font-size: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  padding-left: 28px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  background-color: #FFF;
}
.archimate-over-deliv .over-deliv-container .deliv-container .deliv-methods .methods .method-name span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.archimate-over-deliv .over-deliv-container .deliv-container .deliv-methods .methods .method-name span .orange-img {
  display: flex;
}
.archimate-over-deliv .over-deliv-container .deliv-container .deliv-methods .methods .method-name span .green-img {
  display: none;
}
.archimate-over-deliv .over-deliv-container .deliv-container .deliv-methods .methods .method-name span::before {
  content: '';
  width: 3px;
  top: 0;
  height: 100%;
  left: -13px;
  background-color: #707070;
  position: absolute;
}
.archimate-over-deliv .over-deliv-container .deliv-container .deliv-methods .methods .method-name span img {
  width: 22px;
  height: 22px;
}
.archimate-over-deliv .over-deliv-container .deliv-container .deliv-methods .methods:hover .methods-img {
  top: -2px;
  transition: 0.5s;
}
.archimate-over-deliv .over-deliv-container .deliv-container .deliv-methods .methods:hover .methods-img .blue-img {
  display: none;
}
.archimate-over-deliv .over-deliv-container .deliv-container .deliv-methods .methods:hover .methods-img .white-img {
  display: flex;
}
.archimate-over-deliv .over-deliv-container .deliv-container .deliv-methods .methods:hover .methods-img::before {
  background-image: url(/_public/images/archimate-offers/polygon-green.png);
}
.archimate-over-deliv .over-deliv-container .deliv-container .deliv-methods .methods:hover .method-name {
  transition: 0.5s ease-in-out;
  color: #0D555B;
  font-weight: 500;
  box-shadow: 0 0 10px grey;
}
.archimate-over-deliv .over-deliv-container .deliv-container .deliv-methods .methods:hover .method-name span:before {
  background-color: #0D555B;
}
.archimate-over-deliv .over-deliv-container .deliv-container .deliv-methods .methods:hover .method-name span .orange-img {
  display: none;
}
.archimate-over-deliv .over-deliv-container .deliv-container .deliv-methods .methods:hover .method-name span .green-img {
  transition: 0.9s ease-in-out;
  display: flex;
}
.archimate-over-deliv .over-deliv-container .deliv-container .archimate-goal {
  display: flex;
  margin-top: 3rem;
  flex-direction: column;
  text-align: center;
}
.archimate-over-deliv .over-deliv-container .deliv-container .archimate-goal .goal-info {
  margin-bottom: 1.5rem;
  display: flex;
}
.archimate-over-deliv .over-deliv-container .deliv-container .archimate-goal .goal-info img {
  width: 100%;
  height: 100%;
}
.archimate-top-courses {
  padding: 3rem 1.5rem;
}
.archimate-top-courses .training-courses {
  display: flex;
  flex-direction: column;
}
.archimate-top-courses .training-courses .archimate-heading p {
  text-align: center;
}
.archimate-top-courses .training-courses .archimate-heading p span {
  color: #137572;
  font-weight: 500;
}
.archimate-top-courses .training-courses .courses-list {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.archimate-top-courses .training-courses .courses-list .list {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 2rem;
}
.archimate-top-courses .training-courses .courses-list .list::after {
  content: '';
  width: 55%;
  height: 55%;
  top: -6px;
  left: -6px;
  position: absolute;
  background-color: #e8e8e8;
  z-index: -1;
}
.archimate-top-courses .training-courses .courses-list .list:hover .list-content::before {
  content: none;
}
.archimate-top-courses .training-courses .courses-list .list:hover .list-content::after {
  transition: 0.5s ease-out;
  background: linear-gradient(-45deg, #68a3a1, #68a3a1 70%, #eaeaea 89%);
  transform: translateX(34%) translateY(53%) rotate(16deg);
  height: 700px;
  width: 700px;
}
.archimate-top-courses .training-courses .courses-list .list:hover .list-content span .black-img {
  display: none;
}
.archimate-top-courses .training-courses .courses-list .list:hover .list-content span .white-img {
  display: flex;
}
.archimate-top-courses .training-courses .courses-list .list:hover .list-content .course-content,
.archimate-top-courses .training-courses .courses-list .list:hover .list-content p,
.archimate-top-courses .training-courses .courses-list .list:hover .list-content span {
  color: #FFF;
}
.archimate-top-courses .training-courses .courses-list .list:hover .list-content .archimate-buttons .btn-orange::before {
  content: '';
}
.archimate-top-courses .training-courses .courses-list .list .list-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  background-color: #FFF;
  min-height: 240px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.archimate-top-courses .training-courses .courses-list .list .list-content::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 7px;
  height: 250px;
  width: 250px;
  background: transparent;
  transform: translateX(66%) translateY(84%) rotate(9deg);
  z-index: -1;
}
.archimate-top-courses .training-courses .courses-list .list .list-content::before {
  content: '';
  width: 55%;
  height: 55%;
  bottom: -1px;
  right: 0px;
  position: absolute;
  background-image: url(/_public/images/archimate-offers/certifiction.png);
  background-size: 102% 100%;
  background-repeat: no-repeat;
  z-index: 0;
}
.archimate-top-courses .training-courses .courses-list .list .list-content .course-img {
  width: 35px;
  height: 35px;
  display: flex;
  flex-direction: column;
}
.archimate-top-courses .training-courses .courses-list .list .list-content .course-img img {
  width: 100%;
  height: 100%;
}
.archimate-top-courses .training-courses .courses-list .list .list-content .course-img .black-img {
  display: flex;
}
.archimate-top-courses .training-courses .courses-list .list .list-content .course-img .white-img {
  display: none;
}
.archimate-top-courses .training-courses .courses-list .list .list-content .course-content {
  text-align: center;
  margin: 8px 0 5px;
  font-size: 18px;
  width: 100%;
  font-weight: bold;
}
.archimate-top-courses .training-courses .courses-list .list .list-content p {
  text-align: center;
  font-weight: 600;
}
.archimate-top-courses .training-courses .courses-list .list .list-content p span {
  font-weight: normal;
}
.archimate-top-courses .training-courses .courses-list .list:last-child {
  margin-bottom: 0;
}
.archimate-concepts {
  display: none !important;
}
.archimate-method {
  display: none !important;
}
.archimate-chooseus {
  padding: 3rem 1.5rem;
  background-color: #0D555B;
  position: relative;
  flex-direction: column;
}
.archimate-chooseus .count-particles {
  position: absolute;
}
.archimate-chooseus .particles-js-canvas-el {
  position: absolute;
  width: 100% !important;
  height: 100% !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: .4;
}
.archimate-chooseus .chooseus-container {
  display: flex;
  flex-direction: column;
}
.archimate-chooseus .chooseus-container .chooseus-content {
  display: flex;
  flex-direction: column;
}
.archimate-chooseus .chooseus-container .chooseus-content .archimate-heading h2 {
  text-align: left;
}
.archimate-chooseus .chooseus-container .chooseus-content .archimate-heading h2::before {
  background-position: left;
}
.archimate-chooseus .chooseus-container .chooseus-content p {
  color: #FFF;
}
.archimate-chooseus .chooseus-container .chooseus-content .archimate-buttons {
  justify-content: flex-start;
}
.archimate-chooseus .chooseus-container .chooseus-content .archimate-buttons .btn-orange .blue-img {
  display: none;
}
.archimate-chooseus .chooseus-container .chooseus-content .archimate-buttons .btn-orange:hover {
  color: #0D555B;
}
.archimate-chooseus .chooseus-container .chooseus-content .archimate-buttons .btn-orange:hover .blue-img {
  display: flex;
}
.archimate-chooseus .chooseus-container .chooseus-content .archimate-buttons .btn-orange:hover .white-img {
  display: none;
}
.archimate-chooseus .chooseus-container .chooseus-content .archimate-buttons .btn-orange:hover::before {
  background-color: #FFF;
}
.archimate-chooseus .chooseus-container .chooseus-list {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.archimate-chooseus .chooseus-container .chooseus-list .chooseus-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.archimate-chooseus .chooseus-container .chooseus-list .chooseus-item:last-child {
  margin-bottom: 0;
}
.archimate-chooseus .chooseus-container .chooseus-list .chooseus-item .item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #F5F5F5;
  padding: 1rem;
  border-radius: 10px;
}
.archimate-chooseus .chooseus-container .chooseus-list .chooseus-item .item-content h4 {
  text-align: center;
  margin: 8px 0;
}
.archimate-chooseus .chooseus-container .chooseus-list .chooseus-item .item-content p {
  text-align: center;
  line-height: 1.5;
  width: 100%;
}
.archimate-steps-clients {
  padding: 3rem 1.5rem;
}
.archimate-steps-clients .steps-clients-container {
  display: flex;
  flex-direction: column;
}
.archimate-steps-clients .steps-clients-container .archimate-steps {
  display: none;
  flex-direction: column;
}
.archimate-steps-clients .steps-clients-container .archimate-steps .steps-image {
  display: flex;
  width: 100%;
}
.archimate-steps-clients .steps-clients-container .archimate-steps .steps-image img {
  width: 100%;
}
.archimate-steps-clients .steps-clients-container .our-clients {
  display: flex;
  flex-direction: column;
}
.archimate-steps-clients .steps-clients-container .our-clients .clients-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 272px;
  margin: auto;
  margin-top: 1rem;
}
.archimate-steps-clients .steps-clients-container .our-clients .clients-list h2 {
  display: none;
}
.archimate-steps-clients .steps-clients-container .our-clients .clients-list .client-item {
  display: flex;
  margin-bottom: 1rem;
  background-color: #FFF;
  box-shadow: 0 0 10px #808080;
  width: 125px;
  height: 70px;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
.archimate-steps-clients .steps-clients-container .our-clients .clients-list .client-item img {
  width: 70px;
}
.archimate-steps-clients .steps-clients-container .our-clients .clients-list .client-item:nth-child(7),
.archimate-steps-clients .steps-clients-container .our-clients .clients-list .client-item:nth-child(6) {
  margin-bottom: 0;
}
.archimate-steps-clients .steps-clients-container .our-clients .clients-list .google,
.archimate-steps-clients .steps-clients-container .our-clients .clients-list .arst,
.archimate-steps-clients .steps-clients-container .our-clients .clients-list .atst {
  margin-right: 0;
}
.archimate-steps-clients .steps-clients-container .our-clients .clients-list .dell img {
  width: 50px;
}
.archimate-packages {
  padding: 3rem 1.5rem;
  background-color: #f8f8f8;
}
.archimate-packages .packages-container {
  display: flex;
  flex-direction: column;
}
.archimate-packages .packages-container .archimate-heading {
  margin-bottom: 2rem;
}
.archimate-packages .packages-container .packages-list {
  display: flex;
  flex-direction: column;
}
.archimate-packages .packages-container .packages-list .package-item {
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 10px #808080;
  margin-bottom: 2rem;
  transition: 0.3s;
  background-color: #FFF;
}
.archimate-packages .packages-container .packages-list .package-item:last-child {
  margin-bottom: 0;
}
.archimate-packages .packages-container .packages-list .package-item::before {
  pointer-events: none;
  position: absolute;
  z-index: -1;
  content: '';
  top: 100%;
  left: 5%;
  height: 10px;
  width: 90%;
  opacity: 0;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 80%);
  transition-duration: 0.3s;
  transition-property: transform, opacity;
}
.archimate-packages .packages-container .packages-list .package-item:hover {
  transform: translateY(-5px);
}
.archimate-packages .packages-container .packages-list .package-item:hover::before {
  opacity: 1;
  transform: translateY(5px);
}
.archimate-packages .packages-container .packages-list .package-item .package-heading {
  display: flex;
  flex-direction: column;
  padding: 15px;
  background-color: #F4F9FA;
  order: 1;
}
.archimate-packages .packages-container .packages-list .package-item .package-heading h3 {
  font-size: 18px;
}
.archimate-packages .packages-container .packages-list .package-item .package-heading p {
  color: #0D555B;
  margin-top: 5px;
  line-height: 1.4;
  font-weight: 500;
}
.archimate-packages .packages-container .packages-list .package-item .package-courses {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  order: 2;
}
.archimate-packages .packages-container .packages-list .package-item .package-courses span {
  font-weight: 600;
  font-size: 14px;
}
.archimate-packages .packages-container .packages-list .package-item .package-courses p {
  padding-left: 2rem;
  margin-top: 7px;
  position: relative;
  color: #000000;
  font-weight: 500;
  line-height: 1.4;
}
.archimate-packages .packages-container .packages-list .package-item .package-courses p::before {
  position: absolute;
  content: '';
  width: 7px;
  height: 7px;
  background-color: #fff;
  border-radius: 50%;
  border: 3px solid #0d555b;
  top: 5px;
  left: 0px;
  z-index: -1;
}
.archimate-packages .packages-container .packages-list .package-item .archimate-buttons {
  order: 3;
  margin-bottom: 1rem;
}
.archimate-packages .packages-container .packages-list .package-item .archimate-buttons .btn-orange {
  width: 100%;
  margin: 0 1rem;
}
.archimate-limit-quote {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
}
.archimate-limit-quote .limit-quote-container {
  display: flex;
  flex-direction: column;
}
.archimate-limit-quote .limit-quote-container .limit-container {
  display: flex;
  flex-direction: column;
}
.archimate-limit-quote .limit-quote-container .limit-container .limit-budget {
  display: flex;
  flex-direction: column;
  background-color: #FFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  position: relative;
  z-index: 1;
}
.archimate-limit-quote .limit-quote-container .limit-container .limit-budget::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(/_public/images/archimate-offers/budget-bg.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 165px;
  width: 220px;
  z-index: -1;
}
.archimate-limit-quote .limit-quote-container .limit-container .limit-budget p {
  color: #000000;
  line-height: 1.5;
}
.archimate-limit-quote .limit-quote-container .limit-container .limit-budget .limit-list {
  display: flex;
  flex-direction: column;
  padding-top: 0.5rem;
}
.archimate-limit-quote .limit-quote-container .limit-container .limit-budget .limit-list .list {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
  position: relative;
  font-size: 14px;
  padding-left: 1rem;
  color: #000000;
}
.archimate-limit-quote .limit-quote-container .limit-container .limit-budget .limit-list .list::before {
  content: '';
  background-image: url(/_public/images/archimate-offers/list-diamond.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: 5px;
  left: -4px;
  width: 14px;
  height: 16px;
  position: absolute;
}
.archimate-limit-quote .limit-quote-container .limit-container .limit-budget .limit-list .list:last-child {
  margin-bottom: 0;
}
.archimate-limit-quote .limit-quote-container .limit-container .limit-budget .counter {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0.6rem;
}
.archimate-limit-quote .limit-quote-container .limit-container .limit-budget .counter .count {
  font-weight: 600;
  color: #0D555B;
  font-size: 18px;
}
.archimate-limit-quote .limit-quote-container .limit-container .limit-budget .counter .live {
  font-size: 13px;
}
.archimate-limit-quote .limit-quote-container .limit-container .limit-offer {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background-color: #F5F5F5;
  margin-top: 2rem;
}
.archimate-limit-quote .limit-quote-container .limit-container .limit-offer .offer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.archimate-limit-quote .limit-quote-container .limit-container .limit-offer .offer-content span {
  width: 112px;
  margin-bottom: 10px;
}
.archimate-limit-quote .limit-quote-container .limit-container .limit-offer .offer-content span img {
  width: 100%;
}
.archimate-limit-quote .limit-quote-container .limit-container .limit-offer .offer-content .offer-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.archimate-limit-quote .limit-quote-container .limit-container .limit-offer .offer-content .offer-txt h2 {
  font-size: 30px;
}
.archimate-limit-quote .limit-quote-container .limit-container .limit-offer .offer-content .offer-txt p {
  line-height: 1.5;
  text-align: center;
}
.archimate-limit-quote .limit-quote-container .quote-container {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.archimate-limit-quote .limit-quote-container .quote-container .form {
  padding: 1.5rem;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  background-color: #FFF;
  position: relative;
  z-index: 1;
}
.archimate-limit-quote .limit-quote-container .quote-container .form::before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url(/_public/images/archimate-offers/quote-bg.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 166px;
  width: 220px;
  z-index: -1;
}
.archimate-limit-quote .limit-quote-container .quote-container .form .archimate-heading {
  margin-bottom: 1.5rem;
}
.archimate-qualification {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
  background-color: #F2F2F2;
}
.archimate-qualification .archimate-qual-testi {
  display: flex;
  flex-direction: column;
}
.archimate-qualification .archimate-qual-testi .qualification-container {
  display: flex;
  flex-direction: column;
}
.archimate-qualification .archimate-qual-testi .qualification-container .qualification-list {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
}
.archimate-qualification .archimate-qual-testi .qualification-container .qualification-list .list {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
  position: relative;
  font-size: 14px;
  padding-left: 1rem;
}
.archimate-qualification .archimate-qual-testi .qualification-container .qualification-list .list::before {
  content: '';
  background-image: url(/_public/images/archimate-offers/list-arrow.svg);
  background-repeat: no-repeat;
  background-size: cover;
  top: 5px;
  left: 0;
  width: 10px;
  height: 10px;
  position: absolute;
}
.archimate-qualification .archimate-qual-testi .qualification-container .qualification-list .list:first-child {
  color: #0D555B;
  padding-left: 0;
}
.archimate-qualification .archimate-qual-testi .qualification-container .qualification-list .list:first-child:before {
  content: none;
}
.archimate-qualification .archimate-qual-testi .qualification-container .qualification-list .list:last-child {
  margin-bottom: 0;
}
.archimate-qualification .archimate-qual-testi .testimonial-container {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.archimate-qualification .archimate-qual-testi .testimonial-container .testimonial-list {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.archimate-qualification .archimate-qual-testi .testimonial-container .testimonial-list .testimonial-content {
  display: flex;
  flex-direction: column;
  background-color: #FFF;
  padding: 1rem;
  border-radius: 15px;
  margin-top: 1rem;
  margin-bottom: 2rem;
  position: relative;
  min-height: 290px;
}
.archimate-qualification .archimate-qual-testi .testimonial-container .testimonial-list .testimonial-content::before {
  content: none;
  position: absolute;
  top: -23px;
  left: -7px;
  background-image: url(/_public/images/archimate-offers/review-circle.svg);
  height: 40px;
  width: 50px;
  background-repeat: no-repeat;
  background-size: cover;
  animation-duration: 1s;
  animation-delay: 0.1s;
  animation-iteration-count: infinite;
  animation-name: pulse;
}
.archimate-qualification .archimate-qual-testi .testimonial-container .testimonial-list .testimonial-content::after {
  content: none;
  position: absolute;
  bottom: -30px;
  right: 20px;
  background-image: url(/_public/images/archimate-offers/review-tri.svg);
  height: 32px;
  width: 55px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  animation-duration: 0.5s;
  animation-delay: 0.1s;
  animation-iteration-count: infinite;
  animation-name: pulse;
}
.archimate-qualification .archimate-qual-testi .testimonial-container .testimonial-list .testimonial-content:hover {
  background-color: #0D555B;
  color: #FFF;
  transition: 0.5s;
  cursor: pointer;
}
.archimate-qualification .archimate-qual-testi .testimonial-container .testimonial-list .testimonial-content:hover p {
  color: #FFF;
}
.archimate-qualification .archimate-qual-testi .testimonial-container .testimonial-list .testimonial-content:hover:before,
.archimate-qualification .archimate-qual-testi .testimonial-container .testimonial-list .testimonial-content:hover:after {
  content: '';
}
.archimate-qualification .archimate-qual-testi .testimonial-container .testimonial-list .testimonial-content:hover .user-info .user-image img {
  border: 2px solid #FFF;
}
.archimate-qualification .archimate-qual-testi .testimonial-container .testimonial-list .testimonial-content .user-info {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.archimate-qualification .archimate-qual-testi .testimonial-container .testimonial-list .testimonial-content .user-info .user-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 50px;
  width: 50px;
  margin-right: 10px;
}
.archimate-qualification .archimate-qual-testi .testimonial-container .testimonial-list .testimonial-content .user-info .user-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #0D555B;
}
.archimate-qualification .archimate-qual-testi .testimonial-container .testimonial-list .testimonial-content .user-info .user-name {
  display: flex;
  flex-direction: column;
}
.archimate-qualification .archimate-qual-testi .testimonial-container .testimonial-list .testimonial-content .user-info .user-name .designation {
  font-size: 12px;
}
.archimate-qualification .archimate-qual-testi .testimonial-container .testimonial-list .testimonial-content .review {
  display: flex;
  flex-direction: column;
  margin-top: 0.7rem;
}
.archimate-qualification .archimate-qual-testi .testimonial-container .owl-nav {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 24%;
  margin: 0 auto ;
}
.archimate-qualification .archimate-qual-testi .testimonial-container .owl-nav .owl-prev {
  background-image: url(/_public/images/archimate-offers/left-arrow.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
  outline: 0;
  width: 16px;
  height: 30px;
  top: 0;
  left: 0;
}
.archimate-qualification .archimate-qual-testi .testimonial-container .owl-nav .owl-prev span {
  display: none;
}
.archimate-qualification .archimate-qual-testi .testimonial-container .owl-nav .owl-next {
  background-image: url(/_public/images/archimate-offers/right-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  outline: none;
  width: 16px;
  height: 30px;
  top: 0;
  right: 0px;
}
.archimate-qualification .archimate-qual-testi .testimonial-container .owl-nav .owl-next span {
  display: none;
}
.archimate-qualification .archimate-qual-testi .testimonial-container .archimate-buttons {
  justify-content: center;
  margin-top: 1.5rem;
}
.archimate-faq-certified {
  display: flex;
  flex-direction: column;
  padding: 3rem 1.5rem;
}
.archimate-faq-certified .faq-certified-container {
  display: flex;
  flex-direction: column;
}
.archimate-faq-certified .faq-certified-container .faq-container {
  display: flex;
  flex-direction: column;
}
.archimate-faq-certified .faq-certified-container .faq-container .archimate-heading {
  margin-bottom: 1.5rem;
}
.archimate-faq-certified .faq-certified-container .faq-container .faq-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.archimate-faq-certified .faq-certified-container .faq-container .faq-list .faq-content {
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  margin-bottom: 1rem;
  background-color: #FFF;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  width: 100%;
  position: relative;
  height: fit-content;
}
.archimate-faq-certified .faq-certified-container .faq-container .faq-list .faq-content:first-child::before {
  display: none;
}
.archimate-faq-certified .faq-certified-container .faq-container .faq-list .faq-content:last-child {
  margin-bottom: 0;
}
.archimate-faq-certified .faq-certified-container .faq-container .faq-list .faq-content:last-child::after {
  display: none;
}
.archimate-faq-certified .faq-certified-container .faq-container .faq-list .faq-content .ques {
  display: flex;
  flex-direction: row;
  padding: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
}
.archimate-faq-certified .faq-certified-container .faq-container .faq-list .faq-content .ques span {
  margin-left: 0.5rem;
}
.archimate-faq-certified .faq-certified-container .faq-container .faq-list .faq-content .ques span img {
  width: 20px;
}
.archimate-faq-certified .faq-certified-container .faq-container .faq-list .faq-content .ques span .open {
  display: flex;
}
.archimate-faq-certified .faq-certified-container .faq-container .faq-list .faq-content .ques span .close {
  display: none;
}
.archimate-faq-certified .faq-certified-container .faq-container .faq-list .faq-content .ques h3 {
  font-size: 14px;
  color: #707070;
}
.archimate-faq-certified .faq-certified-container .faq-container .faq-list .faq-content .ans {
  display: none;
  padding: 10px;
  padding-top: 0;
}
.archimate-faq-certified .faq-certified-container .faq-container .faq-list .faq-content .ans p {
  font-size: 12px;
  color: #000000;
  line-height: 1.6;
}
.archimate-faq-certified .faq-certified-container .faq-container .faq-list .faq-content .ans ul {
  margin: 11px 0;
  padding-left: 18px;
  color: #000000;
}
.archimate-faq-certified .faq-certified-container .faq-container .faq-list .faq-content .ans ul li {
  font-size: 12px;
  line-height: 1.5;
  list-style: disc;
}
.archimate-faq-certified .faq-certified-container .faq-container .faq-list .faq-content.active {
  background-color: #F5F5F5;
}
.archimate-faq-certified .faq-certified-container .faq-container .faq-list .faq-content.active .ques h3 {
  color: #000000;
}
.archimate-faq-certified .faq-certified-container .faq-container .faq-list .faq-content.active .ans {
  flex-direction: column;
}
.archimate-faq-certified .faq-certified-container .faq-container .faq-list .faq-content.active span .open {
  display: none;
}
.archimate-faq-certified .faq-certified-container .faq-container .faq-list .faq-content.active span .close {
  display: flex;
}
.archimate-faq-certified .faq-certified-container .certified-container {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.archimate-faq-certified .faq-certified-container .certified-container .archimate-heading {
  margin-bottom: 2.5rem;
}
.archimate-faq-certified .faq-certified-container .certified-container .reason-list {
  display: flex;
  flex-direction: column;
}
.archimate-faq-certified .faq-certified-container .certified-container .reason-list .reason-info {
  display: flex;
  flex-direction: row;
  width: 272px;
  height: 250px;
  background-repeat: no-repeat;
  align-items: flex-end;
  justify-content: flex-end;
  margin: auto;
}
.archimate-faq-certified .faq-certified-container .certified-container .reason-list .reason-info:first-child {
  margin-top: 0%;
}
.archimate-faq-certified .faq-certified-container .certified-container .reason-list .reason-info .content {
  display: flex;
  flex-direction: column;
  position: relative;
  top: 0;
  left: 0;
  width: 187px;
}
.archimate-faq-certified .faq-certified-container .certified-container .reason-list .reason-info .content h3 {
  text-align: center;
  font-size: 22px;
  color: #0D555B;
}
.archimate-faq-certified .faq-certified-container .certified-container .reason-list .reason-info .content p {
  line-height: 1.4;
  text-align: center;
  margin-top: 3px;
  color: #000000;
  font-weight: 500;
}
.archimate-faq-certified .faq-certified-container .certified-container .reason-list .unified {
  background-image: url(/_public/images/archimate-offers/unified.svg);
}
.archimate-faq-certified .faq-certified-container .certified-container .reason-list .unified .content {
  top: -31%;
  left: 0;
  width: 50%;
}
.archimate-faq-certified .faq-certified-container .certified-container .reason-list .independent {
  background-image: url(/_public/images/archimate-offers/independent.svg);
  margin-bottom: 1rem;
}
.archimate-faq-certified .faq-certified-container .certified-container .reason-list .independent .content {
  top: -10%;
}
.archimate-faq-certified .faq-certified-container .certified-container .reason-list .peers {
  background-image: url(/_public/images/archimate-offers/peers.svg);
}
.archimate-faq-certified .faq-certified-container .certified-container .reason-list .peers .content {
  top: -14%;
}
.archimate-faq-certified .faq-certified-container .certified-container .archimate-buttons {
  margin-top: 2rem;
}
.archimate-footer {
  padding: 3rem 1.5rem;
  background-color: #0D555B;
}
.archimate-footer .contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.archimate-footer .contact-info .contact-list {
  display: flex;
  flex-direction: column;
}
.archimate-footer .contact-info .contact-list .email,
.archimate-footer .contact-info .contact-list .phone {
  display: flex;
  flex-direction: row;
  color: #FFF;
  margin-bottom: 10px;
  font-size: 14px;
}
.archimate-footer .contact-info .contact-list .email a,
.archimate-footer .contact-info .contact-list .phone a {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-left: 10px;
  color: #FFF;
  font-size: 14px;
}
.archimate-footer .contact-info .contact-list .phone {
  margin-bottom: 0;
  justify-content: center;
}
.archimate-footer .contact-info .contact-list .phone a {
  margin-right: 0;
}
.archimate-footer .contact-info .archimate-buttons .btn-orange:hover {
  color: #0D555B;
}
.archimate-footer .contact-info .archimate-buttons .btn-orange:hover .blue-img {
  display: flex;
}
.archimate-footer .contact-info .archimate-buttons .btn-orange:hover .white-img {
  display: none;
}
.archimate-footer .contact-info .archimate-buttons .btn-orange .blue-img {
  display: none;
}
.archimate-footer .contact-info .archimate-buttons .btn-orange::before {
  background-color: #FFF;
}
.archimate-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;
}
.archimate-popup .popup {
  margin: auto;
  width: 86%;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  max-width: 400px;
}
.archimate-popup .popup .close-btn {
  width: 54px;
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 3;
  cursor: pointer;
}
.archimate-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;
}
.archimate-popup .popup .form h2 {
  margin: auto;
  margin-bottom: 1.6rem;
  color: #000000;
  text-align: center;
  width: 75%;
  margin-top: 1rem;
}
.archimate-popup .popup .form:before {
  content: '';
  position: absolute;
  top: -3px;
  left: 0;
  background-image: url(/_public/images/archimate-offers/modal-up-bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 218px;
  height: 131px;
  z-index: -1;
}
.archimate-popup .popup .form:after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  background-image: url(/_public/images/archimate-offers/modal-down-bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 127px;
  height: 74px;
  z-index: -1;
}
.archimate-popup .popup .form .archimate-buttons {
  justify-content: center;
}
@media (min-width : 768px) {
  .archimate-buttons .btn-orange,
  .archimate-buttons .btn-white,
  .archimate-buttons .btn-green {
    font-size: 16px;
  }
  .archimate-banner {
    padding: 3rem 2rem;
    padding-top: 1.5rem;
  }
  .archimate-banner .logo-container {
    width: 100%;
  }
  .archimate-banner .logo-container .archimate-container .menu.active+.menu-links {
    width: 50%;
  }
  .archimate-banner .archimate-container .banner-container {
    width: 100%;
  }
  .archimate-banner .archimate-container .banner-container .framework-image {
    display: none;
  }
  .archimate-banner .archimate-container .banner-container .framework-image .archimate-heading h2::after {
    content: '';
  }
  .archimate-banner .archimate-container .banner-container .framework-image .archimate-heading h2::before {
    content: '';
  }
  .archimate-facts {
    padding: 3rem 2rem;
  }
  .archimate-facts .facts-container .facts-list {
    flex-direction: row;
    justify-content: space-around;
  }
  .archimate-facts .facts-container .facts-list .facts-info {
    margin-bottom: 0;
  }
  .archimate-over-deliv {
    padding: 3rem 2rem;
  }
  .archimate-over-deliv .over-deliv-container .deliv-container .deliv-methods {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .archimate-over-deliv .over-deliv-container .deliv-container .deliv-methods .methods {
    width: 42%;
  }
  .archimate-over-deliv .over-deliv-container .deliv-container .deliv-methods .methods:nth-last-child(2) {
    margin-bottom: 0;
  }
  .archimate-over-deliv .over-deliv-container .deliv-container .archimate-goal {
    flex-direction: row;
    align-items: center;
    background-color: #FFF;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    position: relative;
  }
  .archimate-over-deliv .over-deliv-container .deliv-container .archimate-goal .goal-info {
    width: 66%;
    padding: 1.5rem;
    margin-bottom: 0;
  }
  .archimate-over-deliv .over-deliv-container .deliv-container .archimate-goal h2 {
    position: absolute;
    width: 46%;
    right: 0;
    top: 50%;
  }
  .archimate-top-courses {
    padding: 3rem 2rem;
  }
  .archimate-top-courses .training-courses .courses-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 1.5rem;
  }
  .archimate-top-courses .training-courses .courses-list .list {
    width: 31%;
    margin-bottom: 0;
  }
  .archimate-top-courses .training-courses .courses-list .list .list-content .course-content {
    font-size: 18px;
    min-height: 96px;
  }
  .archimate-top-courses .training-courses .courses-list .list .list-content::after {
    width: 40%;
    height: 44%;
  }
  .archimate-popular-courses {
    padding-top: 1rem!important;
  }
  .archimate-popular-courses .training-courses .courses-list .list {
    margin-bottom: 2rem;
  }
  .archimate-popular-courses .training-courses .courses-list .list:nth-last-child(1) {
    margin: auto;
    margin-bottom: 0;
    margin-left: 1rem;
  }
  .archimate-popular-courses .training-courses .courses-list .list:nth-last-child(2) {
    margin: auto;
    margin-bottom: 0;
    margin-right: 1rem;
  }
  .archimate-concepts {
    display: flex !important;
    padding: 3rem 2rem;
    padding-top: 1rem;
    position: relative;
  }
  .archimate-concepts .concepts-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    align-items: center;
    justify-content: space-around;
  }
  .archimate-concepts .concepts-container .concept-image {
    display: flex;
    width: 45%;
    box-shadow: 0 0 10px #80808054;
    padding: 1.5rem;
    min-height: 288px;
    background-color: #FFF;
  }
  .archimate-concepts .concepts-container .concept-image:first-child::before {
    position: absolute;
    content: '';
    background-image: url(/_public/images/archimate-offers/adm-big.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 154px;
    height: 127px;
    bottom: 20px;
    left: 6px;
    z-index: -1;
    opacity: 0.3;
  }
  .archimate-concepts .concepts-container .concept-image:first-child::after {
    position: absolute;
    content: '';
    background-image: url(/_public/images/archimate-offers/adm-small.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 75px;
    height: 75px;
    bottom: 20px;
    left: 6px;
    z-index: -1;
    opacity: 0.2;
    animation: circleMover2 10s linear infinite;
  }
  .archimate-concepts .concepts-container .concept-image:last-child::before {
    position: absolute;
    content: '';
    background-image: url(/_public/images/archimate-offers/adm-small.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 75px;
    height: 75px;
    top: -46px;
    right: 70px;
    z-index: -1;
    animation: circleMover 10s linear infinite;
    opacity: 0.3;
  }
  .archimate-concepts .concepts-container .concept-image:last-child::after {
    position: absolute;
    content: '';
    background-image: url(/_public/images/archimate-offers/adm-big.png);
    background-size: contain;
    background-repeat: no-repeat;
    width: 154px;
    height: 127px;
    top: -33px;
    right: 0;
    z-index: -1;
    opacity: 0.2;
  }
  .archimate-concepts .concepts-container .concept-image img {
    width: 100%;
  }
  .archimate-method {
    display: flex !important;
    padding: 3rem 2rem;
    padding-top: 0;
  }
  .archimate-method .method-container {
    display: flex;
    flex-direction: column;
  }
  .archimate-method .method-container .method-image {
    display: flex;
    width: 100%;
    height: 100%;
    margin-top: 1rem;
  }
  .archimate-method .method-container .method-image img {
    width: 100%;
  }
  .archimate-chooseus {
    padding: 3rem 2rem;
    padding-bottom: 4.5rem;
  }
  .archimate-chooseus .chooseus-container .chooseus-list {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 4rem;
  }
  .archimate-chooseus .chooseus-container .chooseus-list .chooseus-item {
    position: relative;
    background-color: transparent;
    justify-content: center;
    align-items: center;
    z-index: 1;
    width: 30%;
    margin-bottom: 0;
  }
  .archimate-chooseus .chooseus-container .chooseus-list .chooseus-item:hover .item-content span {
    transition: all 0.3s ease-in, color 0s ease-in-out;
  }
  .archimate-chooseus .chooseus-container .chooseus-list .chooseus-item:hover .item-content span img {
    animation: tada 1s infinite;
  }
  .archimate-chooseus .chooseus-container .chooseus-list .chooseus-item::before {
    position: absolute;
    content: '';
    background-image: url(/_public/images/archimate-offers/chooseus-polygen.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    top: -30px;
    left: -26px;
    width: 262px;
    height: 235px;
    z-index: -1;
  }
  .archimate-chooseus .chooseus-container .chooseus-list .chooseus-item .item-content {
    background-color: transparent;
    border-radius: 0;
    padding: 0;
    width: 100%;
  }
  .archimate-chooseus .chooseus-container .chooseus-list .chooseus-item .item-content img {
    width: 35px;
  }
  .archimate-chooseus .chooseus-container .chooseus-list .chooseus-item .item-content h4 {
    font-size: 14px;
  }
  .archimate-chooseus .chooseus-container .chooseus-list .chooseus-item .item-content p {
    font-size: 13px;
    height: 95px;
    overflow: hidden;
  }
  .archimate-steps-clients {
    padding: 3rem 2rem;
  }
  .archimate-steps-clients .steps-clients-container .archimate-steps {
    display: flex;
    height: 100%;
  }
  .archimate-steps-clients .steps-clients-container .archimate-steps .steps-image {
    width: 80%;
    margin: auto;
    height: 100%;
  }
  .archimate-steps-clients .steps-clients-container .our-clients {
    margin-top: 2rem;
  }
  .archimate-steps-clients .steps-clients-container .our-clients .clients-list {
    width: 100%;
    justify-content: center;
  }
  .archimate-steps-clients .steps-clients-container .our-clients .clients-list .client-item {
    width: 106px;
    margin-right: 10px;
    margin-bottom: 0;
  }
  .archimate-steps-clients .steps-clients-container .our-clients .clients-list .client-item:last-child {
    margin-right: 0;
  }
  .archimate-packages {
    padding: 3rem 2rem;
  }
  .archimate-packages .packages-container .packages-list {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }
  .archimate-packages .packages-container .packages-list .package-item {
    width: 46%;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
  }
  .archimate-packages .packages-container .packages-list .package-item:nth-child(1) {
    background-image: url(/_public/images/archimate-offers/package1.png);
    background-size: 100% 32%;
  }
  .archimate-packages .packages-container .packages-list .package-item:nth-child(2) {
    background-image: url(/_public/images/archimate-offers/package2.png);
    background-size: 100% 30%;
  }
  .archimate-packages .packages-container .packages-list .package-item .package-heading {
    background-color: transparent;
  }
  .archimate-packages .packages-container .packages-list .package-item .package-heading h3 {
    min-height: 48px;
  }
  .archimate-packages .packages-container .packages-list .package-item .package-courses {
    min-height: 212px;
  }
  .archimate-packages .packages-container .packages-list .package-item .archimate-buttons {
    margin: 12px 0;
  }
  .archimate-limit-quote {
    padding: 3rem 2rem;
  }
  .archimate-limit-quote .limit-quote-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .archimate-limit-quote .limit-quote-container .limit-container {
    width: 45%;
  }
  .archimate-limit-quote .limit-quote-container .quote-container {
    width: 50%;
    margin-top: 0;
    height: fit-content;
    position: sticky;
    top: 0;
  }
  .archimate-qualification {
    padding: 3rem 2rem;
  }
  .archimate-qualification .archimate-qual-testi .testimonial-container .owl-nav {
    width: 15%;
  }
  .archimate-faq-certified {
    padding: 3rem 2rem;
    position: relative;
  }
  .archimate-faq-certified::before {
    position: absolute;
    content: '';
    background-image: url(/_public/images/archimate-offers/dotted-tri.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 110px;
    height: 110px;
    left: 0;
    top: 42%;
    animation-name: circleMover;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-delay: 2s;
    animation-iteration-count: infinite;
    -webkit-perspective: 100px;
    perspective: 100px;
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  .archimate-faq-certified::after {
    position: absolute;
    content: '';
    background-image: url(/_public/images/archimate-offers/dotted-cir.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 102px;
    height: 102px;
    right: 83px;
    top: 79px;
    animation-name: circleMover;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-delay: 2s;
    animation-iteration-count: infinite;
    -webkit-perspective: 100px;
    perspective: 100px;
    -webkit-transform-origin: center center;
    transform-origin: center center;
  }
  .archimate-faq-certified .faq-certified-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .archimate-faq-certified .faq-certified-container .faq-container {
    width: 49%;
  }
  .archimate-faq-certified .faq-certified-container .certified-container {
    width: 45%;
    margin-top: 0;
    height: fit-content;
    position: sticky;
    top: 0;
  }
  .archimate-faq-certified .faq-certified-container .certified-container .archimate-heading {
    margin-top: 0;
    margin-bottom: 1.5rem;
  }
  .archimate-faq-certified .faq-certified-container .certified-container .reason-list .reason-info {
    margin-top: 0;
    height: 187px;
    margin: inherit;
    background-position: left;
  }
  .archimate-faq-certified .faq-certified-container .certified-container .reason-list .unified {
    background-size: 68% 80%;
    margin-right: auto;
  }
  .archimate-faq-certified .faq-certified-container .certified-container .reason-list .unified .content {
    width: 187px;
    top: -16px;
    left: 0;
  }
  .archimate-faq-certified .faq-certified-container .certified-container .reason-list .independent {
    background-image: url(/_public/images/archimate-offers/independent.svg);
    background-size: 68% 80%;
    margin-left: auto;
    margin-bottom: 1rem;
  }
  .archimate-faq-certified .faq-certified-container .certified-container .reason-list .independent .content {
    top: 23px;
  }
  .archimate-faq-certified .faq-certified-container .certified-container .reason-list .peers {
    background-size: 68% 80%;
    margin-right: auto;
  }
  .archimate-faq-certified .faq-certified-container .certified-container .reason-list .peers .content {
    width: 187px;
    top: 0;
    left: 0;
  }
  .archimate-footer {
    padding: 4rem 3rem;
    padding-bottom: 2rem;
    background-image: url('/_public/images/archimate-offers/footer-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-color: transparent;
    position: relative;
    z-index: 1;
  }
  .archimate-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background-image: url(/_public/images/archimate-offers/foot-bubbles.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100%;
    width: 100%;
  }
  .archimate-footer .white-heading h2 {
    text-align: left;
  }
  .archimate-footer .white-heading h2::before {
    background-position: left;
  }
  .archimate-footer .contact-info {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .archimate-footer .contact-info .contact-list {
    flex-direction: row;
  }
  .archimate-footer .contact-info .contact-list .email,
  .archimate-footer .contact-info .contact-list .phone {
    flex-direction: column;
    margin-bottom: 0px;
    font-size: 20px;
  }
  .archimate-footer .contact-info .contact-list .email a,
  .archimate-footer .contact-info .contact-list .phone a {
    font-size: 16px;
    margin-left: 0;
    margin-top: 5px;
  }
  .archimate-footer .contact-info .contact-list .phone {
    margin-bottom: 0;
    margin-left: 2rem;
  }
  .archimate-footer .contact-info .archimate-buttons {
    margin-top: 0;
  }
}
@media (min-width : 1024px) {
  .archimate-heading h2 {
    font-size: 28px;
  }
  .archimate-banner {
    background-color: transparent;
    background-image: url("/_public/images/archimate-offers/banner-bg.png");
    background-repeat: no-repeat;
    background-size: Cover;
    position: relative;
  }
  .archimate-banner::after {
    content: '';
    position: absolute;
    background-image: url(/_public/images/archimate-offers/banner-right-bg.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    width: 330px;
    height: 380px;
    top: 43%;
    right: 0;
    z-index: -1;
  }
  .archimate-banner::before {
    content: '';
    position: absolute;
    background-image: url(/_public/images/archimate-offers/dots-box.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 64px;
    height: 84px;
    bottom: -30px;
    left: 0;
    animation-name: circleMover;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-delay: 2s;
    animation-iteration-count: infinite;
    perspective: 100px;
    transform-origin: centercenter;
  }
  .archimate-banner .logo-container .archimate-container .menu {
    display: none;
  }
  .archimate-banner .logo-container .archimate-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;
  }
  .archimate-banner .logo-container .archimate-container .menu-links .menu-toggle {
    display: none;
  }
  .archimate-banner .logo-container .archimate-container .menu-links ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    margin: 0;
  }
  .archimate-banner .logo-container .archimate-container .menu-links ul .links-li {
    border-bottom: none;
    border-bottom-style: none;
    margin-right: 1rem;
    padding: 0;
    position: relative;
  }
  .archimate-banner .logo-container .archimate-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;
  }
  .archimate-banner .logo-container .archimate-container .menu-links ul .links-li:hover::after {
    width: 100%;
  }
  .archimate-banner .logo-container .archimate-container .menu-links ul .links-li:last-child {
    display: flex;
    margin-top: 0;
    margin-right: 0;
  }
  .archimate-banner .logo-container .archimate-container .menu-links ul .links-li:last-child:hover::after {
    content: none;
  }
  .archimate-banner .logo-container .archimate-container .menu-links ul .links-li .link {
    font-weight: 600;
    transition: none;
    color: #FFF;
  }
  .archimate-banner .logo-container .archimate-container .menu-links ul .archimate-buttons .btn-white {
    margin-right: 1rem;
  }
  .archimate-banner .logo-container .archimate-container .menu-links ul .archimate-buttons .btn-white::before {
    background-color: #efefef;
  }
  .archimate-banner .logo-container .archimate-container .menu-links ul .archimate-buttons .btn-white .black-call-img {
    display: none;
  }
  .archimate-banner .logo-container .archimate-container .menu-links ul .archimate-buttons .btn-white:hover {
    color: #000000;
  }
  .archimate-banner .logo-container .archimate-container .menu-links ul .archimate-buttons .btn-white:hover::before {
    background-color: #efefef;
  }
  .archimate-banner .logo-container .archimate-container .menu-links ul .archimate-buttons .btn-white:hover .black-call-img {
    display: flex;
  }
  .archimate-banner .logo-container .archimate-container .menu-links ul .archimate-buttons .btn-white:hover .blue-call-img {
    display: none;
  }
  .archimate-banner .logo-container .archimate-container .menu-links ul .archimate-buttons .btn-orange::before {
    background-color: #FB9435;
  }
  .archimate-banner .logo-container .archimate-container .menu-links ul .archimate-buttons .btn-orange:hover {
    box-shadow: 2px 2px 13px #d9d9d9;
  }
  .archimate-banner .logo-container .archimate-container .menu-links ul .archimate-buttons .btn-orange:hover::before {
    background-color: #FB9435;
  }
  .archimate-banner .banner-container {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .archimate-banner .banner-container .banner-content {
    width: 50%;
  }
  .archimate-banner .banner-container .framework-image {
    display: flex!important;
    margin-top: 0;
    width: 42%;
  }
  .archimate-facts {
    padding-left: 0;
  }
  .archimate-facts .facts-container {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    padding-left: 2rem;
    flex-direction: row;
    align-items: center;
    border-radius: 0 87px 87px 0;
  }
  .archimate-facts .facts-container .archimate-heading {
    width: 40%;
    align-items: flex-start;
    margin-bottom: 0;
  }
  .archimate-facts .facts-container .archimate-heading h2::before {
    background-position: left;
  }
  .archimate-facts .facts-container .archimate-heading p {
    text-align: left;
  }
  .archimate-facts .facts-container .facts-list {
    width: 57%;
    flex-direction: row;
    justify-content: space-between;
  }
  .archimate-facts .facts-container .facts-list .facts-info {
    margin-bottom: 0;
  }
  .archimate-over-deliv {
    background-image: url(/_public/images/archimate-offers/overview-bg.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: transparent;
    padding-top: 1rem;
  }
  .archimate-over-deliv .over-deliv-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .archimate-over-deliv .over-deliv-container .over-container {
    width: 42%;
  }
  .archimate-over-deliv .over-deliv-container .deliv-container {
    width: 54%;
    position: sticky;
    top: 100%;
    height: fit-content;
  }
  .archimate-over-deliv .over-deliv-container .deliv-container .deliv-methods .methods {
    width: 47%;
    margin: inherit;
    margin-bottom: 2.6rem;
  }
  .archimate-over-deliv .over-deliv-container .deliv-container .archimate-goal {
    background-color: #F5F5F5;
  }
  .archimate-top-courses {
    padding-top: 0;
  }
  .archimate-top-courses .training-courses .courses-list .list {
    width: 30%;
  }
  .archimate-top-courses .training-courses .courses-list .list .list-content .course-content {
    min-height: 80px;
  }
  .archimate-top-courses .training-courses .courses-list .list .list-content::after {
    width: 50%;
    height: 50%;
  }
  .archimate-popular-courses .training-courses .courses-list .list {
    width: 23%;
    margin-bottom: 2rem;
  }
  .archimate-popular-courses .training-courses .courses-list .list:nth-last-child(1) {
    margin: 0;
  }
  .archimate-popular-courses .training-courses .courses-list .list:nth-last-child(2) {
    margin: 0;
  }
  .archimate-popular-courses .training-courses .courses-list .list:nth-last-child(3) {
    margin-bottom: 0;
  }
  .archimate-popular-courses .training-courses .courses-list .list:nth-last-child(4) {
    margin: 0;
  }
  .archimate-popular-courses .training-courses .courses-list .list .list-content::after {
    width: 40%;
    height: 40%;
  }
  .archimate-concepts .concepts-container .concept-image {
    min-height: 391px;
  }
  .archimate-method {
    padding-bottom: 0;
  }
  .archimate-chooseus .chooseus-container .chooseus-list {
    justify-content: space-around;
  }
  .archimate-chooseus .chooseus-container .chooseus-list .chooseus-item {
    width: 22%;
  }
  .archimate-chooseus .chooseus-container .chooseus-list .chooseus-item::before {
    top: -37px;
    left: -46px;
    width: 292px;
    height: 246px;
  }
  .archimate-steps-clients {
    padding-bottom: 4rem;
    background-image: url(/_public/images/archimate-offers/clients-bg.png);
    background-size: 35% 100%;
    background-repeat: no-repeat;
    background-position: right;
  }
  .archimate-steps-clients .steps-clients-container {
    flex-direction: row;
    width: 100%;
  }
  .archimate-steps-clients .steps-clients-container .archimate-steps {
    width: 55%;
  }
  .archimate-steps-clients .steps-clients-container .archimate-steps .archimate-heading h2 {
    text-align: left;
  }
  .archimate-steps-clients .steps-clients-container .archimate-steps .archimate-heading h2::before {
    background-position: left;
  }
  .archimate-steps-clients .steps-clients-container .archimate-steps .steps-image {
    width: 100%;
    margin: 0;
  }
  .archimate-steps-clients .steps-clients-container .our-clients {
    width: 42%;
    margin-top: 0;
  }
  .archimate-steps-clients .steps-clients-container .our-clients .archimate-heading {
    display: none;
  }
  .archimate-steps-clients .steps-clients-container .our-clients .clients-list {
    position: relative;
    width: 272px;
  }
  .archimate-steps-clients .steps-clients-container .our-clients .clients-list h2 {
    display: flex;
    position: absolute;
    right: -34px;
    top: 146px;
    font-size: 28px;
  }
  .archimate-steps-clients .steps-clients-container .our-clients .clients-list .client-item {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    position: absolute;
    margin-right: 0;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    transform-origin: center;
    animation-duration: 1.5s;
    animation-delay: 0.1s;
    animation-name: pulse;
  }
  .archimate-steps-clients .steps-clients-container .our-clients .clients-list .client-item img {
    width: 50px;
  }
  .archimate-steps-clients .steps-clients-container .our-clients .clients-list .client-item:nth-child(2) {
    right: -50px;
    top: -32px;
  }
  .archimate-steps-clients .steps-clients-container .our-clients .clients-list .client-item:nth-child(3) {
    right: -60px;
    top: 60px;
    margin-right: 0;
  }
  .archimate-steps-clients .steps-clients-container .our-clients .clients-list .client-item:nth-child(3) img {
    width: 68px;
  }
  .archimate-steps-clients .steps-clients-container .our-clients .clients-list .client-item:nth-child(4) {
    right: 55px;
    top: 0px;
    margin-right: 0;
  }
  .archimate-steps-clients .steps-clients-container .our-clients .clients-list .client-item:nth-child(5) {
    right: 140px;
    top: 95px;
    margin-right: 0;
  }
  .archimate-steps-clients .steps-clients-container .our-clients .clients-list .client-item:nth-child(6) {
    right: 180px;
    top: 205px;
  }
  .archimate-steps-clients .steps-clients-container .our-clients .clients-list .client-item:nth-child(7) {
    top: 200px;
    right: 55px;
  }
  .archimate-packages .packages-container .packages-list {
    justify-content: space-around;
  }
  .archimate-packages .packages-container .packages-list .package-item {
    width: 40%;
  }
  .archimate-packages .packages-container .packages-list .package-item .package-courses {
    min-height: 174px;
  }
  .archimate-limit-quote {
    position: relative;
  }
  .archimate-limit-quote::before {
    content: '';
    position: absolute;
    top: 0;
    opacity: 0.5;
    left: 40px;
    background-image: url(/_public/images/archimate-offers/spinner.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 200px;
    height: 200px;
    z-index: -1;
    animation-name: circleMover;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-delay: 2s;
    animation-iteration-count: infinite;
    perspective: 100px;
    transform-origin: centercenter;
  }
  .archimate-limit-quote::after {
    content: '';
    position: absolute;
    top: -42px;
    right: 26px;
    background-image: url(/_public/images/archimate-offers/form-circle.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 300px;
    height: 300px;
    z-index: -1;
    animation-duration: 1s;
    animation-delay: 0.1s;
    animation-iteration-count: infinite;
    animation-name: pulse;
  }
  .archimate-limit-quote .limit-quote-container {
    justify-content: space-around;
  }
  .archimate-limit-quote .limit-quote-container .limit-container {
    width: 40%;
  }
  .archimate-limit-quote .limit-quote-container .quote-container {
    width: 45%;
  }
  .archimate-qualification .archimate-qual-testi {
    flex-direction: row;
    justify-content: space-between;
  }
  .archimate-qualification .archimate-qual-testi .qualification-container {
    width: 53%;
  }
  .archimate-qualification .archimate-qual-testi .testimonial-container {
    width: 41%;
    margin-top: 0;
  }
  .archimate-qualification .archimate-qual-testi .testimonial-container .testimonial-list::after {
    bottom: -35px;
  }
  .archimate-qualification .archimate-qual-testi .testimonial-container .testimonial-list .testimonial-content {
    margin-right: 1rem;
    margin-left: 1rem;
  }
  .archimate-qualification .archimate-qual-testi .testimonial-container .owl-nav {
    position: absolute;
    top: 45%;
    width: 100%;
  }
  .archimate-qualification .archimate-qual-testi .testimonial-container .owl-nav .owl-prev {
    left: -18px;
  }
  .archimate-qualification .archimate-qual-testi .testimonial-container .owl-nav .owl-next {
    right: -18px;
  }
  .archimate-qualification .archimate-qual-testi .testimonial-container .archimate-buttons {
    margin-top: 1rem;
  }
}
@media (min-width : 1366px) {
  .archimate-container {
    width: 1200px;
    margin: 0 auto;
  }
  .archimate-buttons .btn-orange,
  .archimate-buttons .btn-white,
  .archimate-buttons .btn-green {
    font-size: 18px;
  }
  .archimate-buttons .btn-orange img,
  .archimate-buttons .btn-white img,
  .archimate-buttons .btn-green img {
    width: 22px;
    height: 22px;
  }
  .archimate-heading h2 {
    font-size: 32px;
  }
  .archimate-banner {
    padding: 4rem 0rem;
    padding-top: 2rem;
    background-size: 100% 96%;
  }
  .archimate-banner::after {
    width: 360px;
    top: 30%;
  }
  .archimate-banner::before {
    bottom: 26px;
  }
  .archimate-banner .banner-container .framework-image {
    width: 46%;
  }
  .archimate-facts {
    padding: 1rem;
    width: 95%;
    padding-left: 5rem;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
    border-radius: 0 120px 120px 0;
  }
  .archimate-facts .facts-container {
    padding: 0;
    box-shadow: none;
    justify-content: space-between;
  }
  .archimate-facts .facts-container .archimate-heading {
    width: 40%;
  }
  .archimate-facts .facts-container .facts-list {
    width: 58%;
  }
  .archimate-facts .facts-container .facts-list .facts-info {
    flex-direction: row;
  }
  .archimate-facts .facts-container .facts-list .facts-info .facts-content {
    align-items: flex-start;
    margin-left: 8px;
    width: 100%;
  }
  .archimate-facts .facts-container .facts-list .facts-info .facts-content h3 {
    margin: 0;
  }
  .archimate-over-deliv {
    padding: 4rem 0rem;
  }
  .archimate-over-deliv .over-deliv-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .archimate-over-deliv .over-deliv-container .over-container {
    width: 52%;
  }
  .archimate-over-deliv .over-deliv-container .deliv-container {
    width: 43%;
    margin-top: 1.6rem;
  }
  .archimate-over-deliv .over-deliv-container .deliv-container .archimate-goal {
    margin-top: 2rem;
  }
  .archimate-top-courses .training-courses .courses-list {
    width: 75%;
    margin: auto;
    margin-top: 2rem;
  }
  .archimate-top-courses .training-courses .courses-list .list {
    width: 30%;
  }
  .archimate-top-courses .training-courses .courses-list .list .list-content::after {
    width: 50%;
    height: 50%;
  }
  .archimate-popular-courses {
    padding: 4rem 0rem;
    padding-top: 1.5rem;
    position: relative;
  }
  .archimate-popular-courses::before {
    content: '';
    position: absolute;
    top: 47%;
    left: 0;
    width: 180px;
    height: 180px;
    opacity: 0.24;
    background-image: url(/_public/images/archimate-offers/double-circle.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
  .archimate-popular-courses .training-courses .courses-list {
    width: 100%;
    margin: 0;
    margin-top: 2rem;
  }
  .archimate-popular-courses .training-courses .courses-list .list {
    width: 22%;
    margin-bottom: 2rem;
  }
  .archimate-popular-courses .training-courses .courses-list .list:nth-last-child(1) {
    margin: 0;
  }
  .archimate-popular-courses .training-courses .courses-list .list:nth-last-child(2) {
    margin: 0;
  }
  .archimate-popular-courses .training-courses .courses-list .list:nth-last-child(3) {
    margin-bottom: 0;
  }
  .archimate-popular-courses .training-courses .courses-list .list:nth-last-child(4) {
    margin: 0;
  }
  .archimate-concepts {
    padding: 4rem 0rem;
  }
  .archimate-concepts::before {
    left: 65px;
    bottom: 15px;
  }
  .archimate-concepts::after {
    right: 80px;
    top: 0px;
  }
  .archimate-concepts .concepts-container .concept-image {
    min-height: 488px;
  }
  .archimate-method {
    padding: 4rem 0rem;
    padding-bottom: 0;
    padding-top: 0;
  }
  .archimate-chooseus {
    padding: 4rem 0rem;
    background-color: transparent;
    background-image: url(/_public/images/archimate-offers/chooseus-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
  }
  .archimate-chooseus .chooseus-container {
    flex-direction: row;
    width: 100%;
    margin-top: 2rem;
  }
  .archimate-chooseus .chooseus-container .chooseus-content {
    width: 33%;
  }
  .archimate-chooseus .chooseus-container .chooseus-list {
    width: 65%;
    justify-content: space-around;
  }
  .archimate-chooseus .chooseus-container .chooseus-list .chooseus-item {
    width: 26%;
  }
  .archimate-chooseus .chooseus-container .chooseus-list .chooseus-item::before {
    left: -46px;
    width: 275px;
  }
  .archimate-steps-clients {
    background-size: 37% 100%;
    padding: 4rem 0rem;
  }
  .archimate-steps-clients .steps-clients-container .our-clients .clients-list h2 {
    right: -50px;
    top: 176px;
  }
  .archimate-steps-clients .steps-clients-container .our-clients .clients-list .client-item:nth-child(2) {
    right: -57px;
    top: -32px;
  }
  .archimate-steps-clients .steps-clients-container .our-clients .clients-list .client-item:nth-child(4) {
    right: 61px;
    top: 35px;
  }
  .archimate-steps-clients .steps-clients-container .our-clients .clients-list .client-item:nth-child(3) {
    right: -75px;
    top: 73px;
  }
  .archimate-steps-clients .steps-clients-container .our-clients .clients-list .client-item:nth-child(5) {
    right: 157px;
    top: 127px;
  }
  .archimate-steps-clients .steps-clients-container .our-clients .clients-list .client-item:nth-child(6) {
    right: 210px;
    top: 240px;
  }
  .archimate-steps-clients .steps-clients-container .our-clients .clients-list .client-item:nth-child(7) {
    top: 240px;
    right: 55px;
  }
  .archimate-packages {
    padding: 4rem 0rem;
  }
  .archimate-packages .packages-container .packages-list .package-item .package-courses {
    min-height: 157px;
  }
  .archimate-limit-quote {
    padding: 4rem 0rem;
  }
  .archimate-limit-quote .limit-quote-container .quote-container {
    width: 40%;
  }
  .archimate-qualification {
    padding: 4rem 0rem;
  }
  .archimate-faq-certified {
    padding: 4rem 0rem;
  }
  .archimate-faq-certified .faq-certified-container .certified-container .reason-list .reason-info {
    width: 327px;
  }
  .archimate-faq-certified .faq-certified-container .certified-container .reason-list .independent {
    margin-top: 0;
    margin-bottom: 0;
  }
  .archimate-footer {
    padding: 4rem 0rem;
    padding-bottom: 2rem;
  }
}
@media (min-width : 1500px) {
  .archimate-steps-clients {
    background-size: 39% 102%;
  }
}
@media (min-width : 1600px) {
  .archimate-steps-clients {
    background-size: 40% 104%;
    padding-top: 5.5rem;
  }
  .archimate-chooseus {
    padding: 6rem 0;
  }
}
@media (min-width : 1900px) {
  .archimate-steps-clients {
    background-size: 42% 104%;
  }
}
