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

body {
  margin: 0;
  padding: 0;
}
input[type="checkbox"]:before,
input[type="checkbox"]:checked:before {
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #000000;
  font-weight: 700;
  font-size: 12px;
}
input[type="checkbox"]:checked:before {
  content: '\2713';
}
input[type="checkbox"] {
  -webkit-appearance: none;
  height: 12px;
  width: 12px;
  outline: none;
  cursor: pointer;
  position: relative;
  background-color: #ffffff;
  margin-left: 0;
  box-shadow: 0 0 5px #ffffff;
}
/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* scroll */
::-webkit-scrollbar {
  width: 5px;
  height: 3px;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: #ffffff;
}
::-webkit-scrollbar-thumb {
  background: #041427;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #041427;
}
.tableau-main * {
  box-sizing: border-box;
  font-family: Roboto;
}
.tableau-main p {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  text-align: left;
  color: #201F1F;
}
.tableau-main p strong p b {
  font-weight: 700;
}
.tableau-main a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  outline: none;
}
.tableau-main button {
  outline: none;
}
.tableau-main h1,
.tableau-main h2,
.tableau-main h3,
.tableau-main h4 {
  margin: 0;
}
.tableau-main h2 {
  font-size: 22px;
  font-weight: 600;
  font-style: normal;
}
.tableau-main ul,
.tableau-main li {
  padding: 0;
  margin: 0;
  color: #201F1F;
  list-style: none;
}
.tableau-main .container {
  width: 100%;
}
.tableau-main .flex-container {
  display: flex;
  margin: auto;
}
.tableau-main .buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.tableau-main .buttons .btn-yellow,
.tableau-main .buttons .btn-white {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  min-width: 150px;
  white-space: nowrap;
  border: none;
  color: #201F1F;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.tableau-main .buttons .btn-yellow::before,
.tableau-main .buttons .btn-white::before {
  content: '';
  width: 20%;
  height: 20%;
  position: absolute;
  left: 45%;
  opacity: 0;
  transition: 0.2s ease-in-out;
  z-index: -1;
  background-color: #f5f5f5;
}
.tableau-main .buttons .btn-yellow:hover::before,
.tableau-main .buttons .btn-white:hover::before {
  width: 100%;
  height: 100%;
  opacity: 0.4;
  left: 0;
}
.tableau-main .buttons .btn-yellow img,
.tableau-main .buttons .btn-white img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.tableau-main .buttons .btn-yellow {
  background-color: #EEC969;
}
.tableau-main .buttons .btn-white {
  background-color: #ffffff;
  border: 1px solid #041427;
}
.tableau-main .heading {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.tableau-main .heading h2 {
  animation: 40s linear 0s infinite move;
  background: repeating-linear-gradient(45deg, #041427, #EEC969 30px, #041427 60px);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.tableau-main .center-heading {
  align-items: center;
}
.tableau-main .center-heading h2 {
  text-align: center;
}
.tableau-main .white-heading h2 {
  color: #ffffff;
  background: repeating-linear-gradient(45deg, #EEC969, #EEC969 30px, #ffffff 60px);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
@-webkit-keyframes circles {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -1000px, 0);
    transform: translate3d(0, -1000px, 0);
  }
}
@keyframes colon {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes circles {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, -1000px, 0);
    transform: translate3d(0, -1000px, 0);
  }
}
@keyframes move {
  from {
    background-position: 0px;
  }
  to {
    background-position: 1000px;
  }
}
@keyframes animate {
  0% {
    transform: translate(-100px, 20px) rotate(0deg);
  }
  30% {
    transform: translate(50px, -20px);
  }
  60% {
    transform: translate(170px, 20px);
  }
  100% {
    transform: translate(-100px, 20px) rotate(360deg);
  }
}
@keyframes shake {
  0% {
    transform: translateX(1px) rotate(0deg);
  }
  50% {
    transform: translateX(-1px) rotate(-1deg);
  }
  100% {
    transform: translateX(1px) rotate(-1deg);
  }
}
@keyframes cirlce-anim {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.tableau-main .banner {
  flex-direction: column;
  background-color: #041427;
}
.tableau-main .banner .logo-container {
  display: flex;
}
.tableau-main .banner .logo-container .container {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background-color: #ffffff;
}
.tableau-main .banner .logo-container .container .tka-logo {
  display: flex;
  max-width: 200px;
}
.tableau-main .banner .logo-container .container .tka-logo img {
  width: 100%;
}
.tableau-main .banner .logo-container .container .menu {
  display: flex;
  z-index: 1;
}
.tableau-main .banner .logo-container .container .menu img {
  width: 22px;
  height: 22px;
}
.tableau-main .banner .logo-container .container .menu-links {
  width: 0;
  transition: all 0.5s;
  height: fit-content;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 15;
  bottom: 0;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.tableau-main .banner .logo-container .container .menu-links .menu-toggle {
  color: #041427;
}
.tableau-main .banner .logo-container .container .menu-links .menu-toggle img {
  width: 15px;
  margin-right: 5px;
}
.tableau-main .banner .logo-container .container ul .links-li {
  padding: 8px 0;
  border-bottom: 1px dotted #041427;
}
.tableau-main .banner .logo-container .container ul .links-li:first-child {
  padding-top: 0;
}
.tableau-main .banner .logo-container .container ul .links-li:nth-child(5) {
  border-bottom: none;
  padding-bottom: 0;
}
.tableau-main .banner .logo-container .container ul .links-li:last-child {
  display: none;
}
.tableau-main .banner .logo-container .container ul .links-li .link {
  font-size: 14px;
  color: #041427;
}
.tableau-main .banner .logo-container .container .menu.active {
  box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.047);
}
.tableau-main .banner .logo-container .container .menu.active + .menu-links {
  padding: 15px;
  width: 80%;
}
.tableau-main .banner .logo-container .container .menu.active + .menu-links .menu-toggle {
  display: flex;
  justify-content: flex-end;
}
.tableau-main .banner .sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  transition: 1s;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.tableau-main .banner .sticky-up {
  top: -100px;
}
.tableau-main .banner .banner-container {
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
}
.tableau-main .banner .banner-container .banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.tableau-main .banner .banner-container .banner-content h1 {
  display: flex;
  color: #ffffff;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}
.tableau-main .banner .banner-container .banner-content h1 img {
  width: 35px;
  margin-right: 0.5rem;
}
.tableau-main .banner .banner-container .banner-content p {
  color: #ffffff;
}
.tableau-main .banner .banner-container .banner-content h3 {
  display: flex;
  color: #ffffff;
  margin: 1rem 0;
  align-items: center;
}
.tableau-main .banner .banner-container .banner-content h3 img {
  margin-right: 7px;
  width: 30px;
  height: 30px;
  animation: shake 0.5s linear infinite;
}
.tableau-main .banner .banner-container .banner-content .countdown {
  display: flex;
}
.tableau-main .banner .banner-container .banner-content .countdown .timer {
  display: flex;
  flex-direction: column;
  margin-right: 1rem;
  position: relative;
  z-index: 0;
  width: 56px;
  align-items: center;
}
.tableau-main .banner .banner-container .banner-content .countdown .timer::before {
  content: '';
  position: absolute;
  background-image: url(/_public/images/tableau/colon.svg);
  width: 8px;
  height: 33px;
  right: -13px;
  top: 3px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
  animation: colon 2s linear infinite;
}
.tableau-main .banner .banner-container .banner-content .countdown .timer:last-child {
  margin-right: 0;
}
.tableau-main .banner .banner-container .banner-content .countdown .timer:last-child::before {
  content: none;
}
.tableau-main .banner .banner-container .banner-content .countdown .timer span {
  display: flex;
  justify-content: center;
  font-size: 20px;
  font-weight: 500;
  align-items: center;
  background-color: #ffffff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  box-shadow: 0 3px 0 3px #EEC969;
}
.tableau-main .banner .banner-container .banner-content .countdown .timer p {
  font-weight: bold;
  text-align: center;
  margin-top: 0.7rem;
}
.tableau-main .banner .banner-container .banner-info {
  display: flex;
  margin-top: 2rem;
  padding: 0.5rem;
  background-color: #ffffff;
}
.tableau-main .banner .banner-container .banner-info img {
  width: 100%;
}
.tableau-main .overview {
  padding: 3rem 1.5rem;
}
.tableau-main .overview .overview-container {
  display: flex;
  flex-direction: column;
}
.tableau-main .overview .overview-container .overview-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.tableau-main .overview .overview-container .overview-image {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.tableau-main .overview .overview-container .overview-image span {
  display: flex;
}
.tableau-main .overview .overview-container .overview-image span img {
  width: 100%;
}
.tableau-main .file-type {
  padding: 3rem 1.5rem;
  background-color: #f5f5f5;
}
.tableau-main .file-type .file-container {
  display: flex;
  flex-direction: column;
}
.tableau-main .file-type .file-container span {
  display: flex;
}
.tableau-main .file-type .file-container span .file-ipad {
  display: none;
}
.tableau-main .file-type .file-container span img {
  width: 100%;
}
.tableau-main .course {
  padding: 3rem 1.5rem;
}
.tableau-main .course .course-container {
  display: flex;
  flex-direction: column;
}
.tableau-main .course .course-container .course-content {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  order: 2;
}
.tableau-main .course .course-container .course-content .course-item {
  display: flex;
  flex-direction: column;
  background-color: #f5f5f5;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  padding: 1.5rem;
  width: 272px;
  align-self: center;
}
.tableau-main .course .course-container .course-content .course-item span {
  display: flex;
  width: 75px;
  height: 75px;
  background-color: #000000;
  padding: 1rem;
  margin-bottom: 1rem;
}
.tableau-main .course .course-container .course-content .course-item span img {
  width: 100%;
}
.tableau-main .course .course-container .course-content .course-item .course-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.tableau-main .course .course-container .course-content .course-item .course-info h3 {
  margin-bottom: 0.5rem;
}
.tableau-main .course .course-container .why-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.tableau-main .delivery {
  padding: 3rem 1.5rem;
  background-color: #041427;
}
.tableau-main .delivery canvas {
  display: none;
}
.tableau-main .delivery .delivery-container {
  display: flex;
  flex-direction: column;
}
.tableau-main .delivery .delivery-container p {
  text-align: center;
  color: #ffffff;
}
.tableau-main .delivery .delivery-container .delivery-list {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tableau-main .delivery .delivery-container .delivery-list .item {
  display: flex;
  color: #ffffff;
  background-color: #2A3747;
  align-items: center;
  margin-top: 1.5rem;
  padding: 1.5rem;
  width: 270px;
  font-size: 16px;
  font-weight: 400;
}
.tableau-main .delivery .delivery-container .delivery-list .item span {
  display: flex;
  width: 45px;
  height: 45px;
  margin-right: 1rem;
}
.tableau-main .delivery .delivery-container .delivery-list .item span img {
  width: 100%;
}
.tableau-main .delivery .delivery-container .delivery-list .item span .white-img {
  display: none;
}
.tableau-main .delivery .delivery-container .delivery-list .item:hover {
  background-color: #ffffff;
  color: #201F1F;
  transition: 0.6s ease-in-out;
}
.tableau-main .delivery .delivery-container .delivery-list .item:hover span .white-img {
  display: flex;
}
.tableau-main .delivery .delivery-container .delivery-list .item:hover span .black-img {
  display: none;
}
.tableau-main .principles {
  padding: 3rem 1.5rem;
}
.tableau-main .principles .principles-container {
  display: flex;
  flex-direction: column;
}
.tableau-main .principles .principles-container .principles-content {
  display: flex;
  flex-direction: column;
}
.tableau-main .principles .principles-container .principles-content ul {
  display: flex;
  flex-direction: column;
}
.tableau-main .principles .principles-container .principles-content ul li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 500;
}
.tableau-main .principles .principles-container .principles-content ul li:last-child {
  margin-bottom: 0;
}
.tableau-main .principles .principles-container .principles-content ul li span {
  display: flex;
  min-width: 52px;
  width: 52px;
  height: 52px;
  margin-right: 0.5rem;
}
.tableau-main .principles .principles-container .principles-content ul li span img {
  width: 100%;
}
.tableau-main .principles .principles-container .principles-img {
  display: flex;
  margin-top: 2rem;
}
.tableau-main .principles .principles-container .principles-img img {
  width: 100%;
}
.tableau-main .limited-offer {
  padding: 3rem 1.5rem;
  background-image: linear-gradient(180deg, #ebebeb 0%, #d5d5d5 50%, #d5d5d5 100%);
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.tableau-main .limited-offer .offer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tableau-main .limited-offer .offer-container span {
  display: flex;
  width: 85px;
  height: 85px;
  margin-bottom: 1rem;
}
.tableau-main .limited-offer .offer-container span img {
  width: 100%;
}
.tableau-main .limited-offer .offer-container .offer-content {
  display: flex;
  flex-direction: column;
}
.tableau-main .limited-offer .offer-container .offer-content h2 {
  font-size: 24px;
  margin-bottom: 0.5rem;
}
.tableau-main .limited-offer .offer-container .offer-content h2,
.tableau-main .limited-offer .offer-container .offer-content p {
  text-align: center;
}
.tableau-main .limited-offer .offer-container .offer-content p {
  line-height: 1.4;
}
.tableau-main .architecture-budget {
  padding: 3rem 1.5rem;
}
.tableau-main .architecture-budget .architecture-container {
  display: flex;
  flex-direction: column;
}
.tableau-main .architecture-budget .architecture-container .architecture {
  display: flex;
  flex-direction: column;
}
.tableau-main .architecture-budget .architecture-container .architecture span {
  display: flex;
}
.tableau-main .architecture-budget .architecture-container .architecture span img {
  width: 100%;
}
.tableau-main .architecture-budget .architecture-container .limited-budget {
  display: flex;
  flex-direction: column;
  background-color: #f5f5f5;
  padding: 1.5rem;
  margin-top: 2rem;
  align-items: flex-start;
}
.tableau-main .architecture-budget .architecture-container .limited-budget p {
  font-weight: bold;
  line-height: 1.4;
}
.tableau-main .architecture-budget .architecture-container .limited-budget ul {
  display: flex;
  flex-direction: column;
}
.tableau-main .architecture-budget .architecture-container .limited-budget ul li {
  display: flex;
  font-size: 14px;
  margin-top: 0.5rem;
  padding-left: 1rem;
  position: relative;
  z-index: 1;
}
.tableau-main .architecture-budget .architecture-container .limited-budget ul li::before {
  content: '';
  background-image: url('/_public/images/tableau/star.svg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 25px;
  height: 21px;
  position: absolute;
  top: 0;
  left: -8px;
  z-index: -1;
}
.tableau-main .architecture-budget .architecture-container .limited-budget .counter {
  font-size: 16px;
  margin-top: 0.5rem;
}
.tableau-main .how {
  padding: 3rem 1.5rem;
  background-color: #041427;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.tableau-main .how .background-shapes {
  content: "";
  position: absolute;
  left: 0;
  bottom: -30rem;
  width: 100%;
  height: 100%;
  background-size: 100% 100%;
  animation: 20s circles linear infinite;
  background-repeat: repeat-x;
  background-image: url(/_public/images/tableau/circles.svg);
  z-index: -1;
  opacity: 0.4;
}
.tableau-main .how .how-container {
  display: flex;
  flex-direction: column;
}
.tableau-main .how .how-container .work-content {
  display: flex;
  flex-direction: column;
}
.tableau-main .how .how-container .work-content p {
  color: #ffffff;
  text-align: center;
}
.tableau-main .how .how-container .work-content p:nth-child(2) {
  margin-bottom: 0.5rem;
}
.tableau-main .how .how-container .fact-content {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.tableau-main .how .how-container .fact-content .fact-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 272px;
  align-self: center;
}
.tableau-main .how .how-container .fact-content .fact-list .fact-item {
  display: flex;
  flex-direction: column;
  padding: 0.5rem;
  background-color: #ffffff;
  border: 2px solid #EEC969;
  justify-content: center;
  margin-top: 1rem;
  width: 128px;
  height: 150px;
}
.tableau-main .how .how-container .fact-content .fact-list .fact-item .fact {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tableau-main .how .how-container .fact-content .fact-list .fact-item .fact .image {
  display: flex;
  width: 40px;
  height: 40px;
}
.tableau-main .how .how-container .fact-content .fact-list .fact-item .fact .image img {
  width: 100%;
}
.tableau-main .how .how-container .fact-content .fact-list .fact-item .fact .image .black-img {
  display: none;
}
.tableau-main .how .how-container .fact-content .fact-list .fact-item .fact .facts-count {
  display: flex;
  margin: 6px 0;
}
.tableau-main .how .how-container .fact-content .fact-list .fact-item .fact .facts-count h3,
.tableau-main .how .how-container .fact-content .fact-list .fact-item .fact .facts-count span {
  font-weight: 700;
  font-size: 20px;
}
.tableau-main .how .how-container .fact-content .fact-list .fact-item .fact p {
  font-weight: 600;
  text-align: center;
  width: 80%;
  font-size: 13px;
  line-height: 1.4;
}
.tableau-main .choose-us {
  padding: 3rem 1.5rem;
}
.tableau-main .choose-us .choose-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tableau-main .choose-us .choose-container .choose-list {
  display: flex;
  flex-direction: column;
}
.tableau-main .choose-us .choose-container .choose-list .choose {
  display: flex;
  flex-direction: column;
  padding: 2rem 1rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  margin-top: 1.5rem;
  width: 270px;
  align-self: center;
  align-items: center;
  background: linear-gradient(#f5f5f5 38%, #ffffff 30%);
}
.tableau-main .choose-us .choose-container .choose-list .choose:first-child {
  margin-top: 0.5rem;
}
.tableau-main .choose-us .choose-container .choose-list .choose span {
  width: 180px;
  height: 79px;
  padding: 1rem 4.3rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  margin: 1rem 0;
  background-color: #ffffff;
}
.tableau-main .choose-us .choose-container .choose-list .choose span img {
  width: 100%;
}
.tableau-main .choose-us .choose-container .choose-list .choose h3 {
  font-size: 16px;
  text-align: center;
}
.tableau-main .choose-us .choose-container .choose-list .choose p {
  text-align: center;
  line-height: 1.4;
}
.tableau-main .faq-review {
  padding: 3rem 1.5rem;
  padding-top: 0;
}
.tableau-main .faq-review .faq-container {
  display: flex;
  flex-direction: column;
}
.tableau-main .faq-review .faq-container .faq {
  display: flex;
  flex-direction: column;
}
.tableau-main .faq-review .faq-container .faq .faq-list {
  display: flex;
  flex-direction: column;
}
.tableau-main .faq-review .faq-container .faq .faq-list .faq-name {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  margin-bottom: 1.2rem;
  width: 100%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.tableau-main .faq-review .faq-container .faq .faq-list .faq-name:last-child {
  margin-bottom: 0;
}
.tableau-main .faq-review .faq-container .faq .faq-list .faq-name .ques {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  padding: 0.8rem;
}
.tableau-main .faq-review .faq-container .faq .faq-list .faq-name .ques strong {
  font-size: 14px;
  color: #041427;
  font-weight: 900;
}
.tableau-main .faq-review .faq-container .faq .faq-list .faq-name .ques h3 {
  font-size: 14px;
  width: 79%;
}
.tableau-main .faq-review .faq-container .faq .faq-list .faq-name .ques span {
  width: 26px;
  height: 26px;
  position: relative;
  z-index: 1;
  display: flex;
}
.tableau-main .faq-review .faq-container .faq .faq-list .faq-name .ques span::before,
.tableau-main .faq-review .faq-container .faq .faq-list .faq-name .ques span::after {
  content: '';
  position: absolute;
  width: 12px;
  height: 3px;
  background-color: #EEC969;
  z-index: -1;
  transition: 0.8s ease-in-out;
  top: 12px;
}
.tableau-main .faq-review .faq-container .faq .faq-list .faq-name .ques span::before {
  transform: rotate(135deg);
  right: 0px;
}
.tableau-main .faq-review .faq-container .faq .faq-list .faq-name .ques span::after {
  transform: rotate(-135deg);
  left: 6px;
}
.tableau-main .faq-review .faq-container .faq .faq-list .faq-name .ans {
  display: none;
  padding: 0.8rem;
  padding-top: 8px;
}
.tableau-main .faq-review .faq-container .faq .faq-list .faq-name .ans p {
  line-height: 1.6;
  font-size: 13px;
}
.tableau-main .faq-review .faq-container .faq .faq-list .faq-name .ans ul {
  margin-top: 5px;
  padding-left: 0.7rem;
  margin-left: 0.5rem;
}
.tableau-main .faq-review .faq-container .faq .faq-list .faq-name .ans ul li {
  font-size: 13px;
  line-height: 1.5;
  list-style: disc;
}
.tableau-main .faq-review .faq-container .faq .faq-list .faq-name.active {
  border-top-left-radius: 15px ;
  border-top-right-radius: 15px ;
}
.tableau-main .faq-review .faq-container .faq .faq-list .faq-name.active .ques {
  background-color: #041427;
  border-top-left-radius: 15px ;
  border-top-right-radius: 15px ;
}
.tableau-main .faq-review .faq-container .faq .faq-list .faq-name.active .ques strong {
  color: #ffffff;
}
.tableau-main .faq-review .faq-container .faq .faq-list .faq-name.active .ques h3 {
  color: #ffffff;
}
.tableau-main .faq-review .faq-container .faq .faq-list .faq-name.active .ques span::before {
  transform: rotate(44deg);
  background-color: #ffffff;
}
.tableau-main .faq-review .faq-container .faq .faq-list .faq-name.active .ques span::after {
  transform: rotate(-44deg);
  background-color: #ffffff;
}
.tableau-main .faq-review .faq-container .review {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
.tableau-main .faq-review .faq-container .review .review-list {
  display: flex;
  flex-direction: column;
}
.tableau-main .faq-review .faq-container .review .review-list .review-content {
  width: 90%;
  margin: 10px;
  margin: 6px auto;
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  border-radius: 10px;
  position: relative;
}
.tableau-main .faq-review .faq-container .review .review-list .review-content::before {
  content: '';
  position: absolute;
  width: 100%;
  background-color: #ffffff;
  height: 90%;
  z-index: -1;
  left: 8px;
  top: 5%;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
}
.tableau-main .faq-review .faq-container .review .review-list .review-content h4 {
  color: #EEC969;
  font-size: 13px;
}
.tableau-main .faq-review .faq-container .review .review-list .review-content p {
  margin: 1rem 0;
}
.tableau-main .faq-review .faq-container .review .review-list .review-content .author {
  display: flex;
  align-items: center;
}
.tableau-main .faq-review .faq-container .review .review-list .review-content .author span {
  width: 55px;
  height: 55px;
  display: flex;
}
.tableau-main .faq-review .faq-container .review .review-list .review-content .author span img {
  width: 100%;
}
.tableau-main .faq-review .faq-container .review .review-list .review-content .author .name {
  display: flex;
  flex-direction: column;
  width: 70%;
  margin-left: 1rem;
}
.tableau-main .faq-review .faq-container .review .review-list .review-content .star {
  display: flex;
  width: 100px;
}
.tableau-main .faq-review .faq-container .review .review-list .review-content .star img {
  width: 100%;
}
.tableau-main .faq-review .faq-container .review .review-list .owl-dots {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}
.tableau-main .faq-review .faq-container .review .review-list .owl-dots .owl-dot {
  display: flex;
  width: 30px;
  height: 6px;
  background-color: #A3A3A3;
  margin-right: 10px;
  outline: none;
  border-radius: 18px;
}
.tableau-main .faq-review .faq-container .review .review-list .owl-dots .owl-dot.active {
  background-color: #EEC969;
  width: 15px;
  height: 15px;
}
.tableau-main .footer {
  background-color: #041427;
  padding: 3rem 1.5rem;
}
.tableau-main .footer .form-container {
  display: flex;
  flex-direction: column;
}
.tableau-main .footer .form-container p {
  color: #ffffff;
}
.tableau-main .footer .form-container .form-content {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background-color: #EEC969;
  align-items: flex-start;
}
.tableau-main .footer .form-container .form-content .heading {
  margin-bottom: 0.5rem;
}
.tableau-main .footer .form-container .form-content .heading h2 {
  background: repeating-linear-gradient(45deg, #041427, #ffffff 30px, #041427 60px);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}
.tableau-main .footer .form-container .form-content p {
  color: #201F1F;
}
.tableau-main .footer .form-container .form-content .contact-list {
  display: flex;
  flex-direction: column;
}
.tableau-main .footer .form-container .form-content .contact-list .contact {
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
}
.tableau-main .footer .form-container .form-content .contact-list .contact a {
  font-size: 14px;
  font-weight: 500;
}
.tableau-main .footer .form-container .form {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  margin-bottom: 0;
}
.tableau-main .footer .form-container .form .buttons {
  justify-content: flex-start;
}
.tableau-main .footer .form-container .form .input-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.tableau-main .footer .form-container .form .input-list .input-container {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
  border: 2px solid #E9E8E8;
  border-radius: 7px;
  padding: 10px;
}
.tableau-main .footer .form-container .form .input-list .input-container input,
.tableau-main .footer .form-container .form .input-list .input-container textarea {
  width: 100%;
  border: none;
  outline: 0;
  font-weight: 500;
  background-color: transparent;
  padding: 0;
  color: #ffffff;
}
.tableau-main .footer .form-container .form .input-list .input-container textarea {
  height: 44px;
  resize: none;
}
.tableau-main .footer .form-container .form .input-list .input-error {
  border: 2px solid red;
}
.tableau-main .footer .form-container .form .input-list .input-error ::-webkit-input-placeholder {
  /* Edge */
  color: red;
}
.tableau-main .footer .form-container .form .input-list ::-webkit-input-placeholder {
  /* Edge */
  color: #E9E8E8;
}
.tableau-main .footer .form-container .form .form-consent {
  display: flex;
  color: #ffffff;
  font-size: 11px;
  margin-bottom: 0.4rem;
}
.tableau-main .footer .form-container .form .form-consent:last-child {
  margin-bottom: 0;
}
.tableau-main .footer .form-container .form .form-consent label {
  display: flex;
  align-items: center;
  margin-left: 0.3rem;
  font-size: 11px;
  width: 92%;
}
.tableau-main .footer .form-container .form .form-consent p {
  line-height: 1.4;
  font-size: 11px;
}
.tableau-main .footer .form-container .form .form-consent a {
  color: #EEC969;
  font-weight: bold;
}
.tableau-main .footer .form-container .form .buttons .btn-orange:hover {
  background: #34687f;
}
.tableau-main .footer .form-container .form .buttons .btn-orange::after {
  background: #34687f;
}
.tableau-main .footer .form-container .form .consent-error,
.tableau-main .footer .form-container .form .consent-error-other {
  margin-bottom: 0.5rem;
}
.tableau-main .footer .form-container .form .consent-error p,
.tableau-main .footer .form-container .form .consent-error-other p {
  color: red;
  line-height: 1.4;
  font-size: 11px;
}
@media (min-width : 768px) {
  .tableau-main .buttons .btn-yellow,
  .tableau-main .buttons .btn-white {
    font-size: 16px;
  }
  .tableau-main .banner .logo-container .container {
    padding: 1rem 2rem;
  }
  .tableau-main .banner .logo-container .container .menu.active + .menu-links {
    width: 50%;
  }
  .tableau-main .banner .banner-container {
    padding: 3rem 2rem;
    padding-top: 2rem;
  }
  .tableau-main .banner .banner-container .banner-info {
    display: none;
  }
  .tableau-main .overview {
    padding: 3rem 2rem;
  }
  .tableau-main .overview .overview-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .tableau-main .overview .overview-container .overview-content {
    width: 50%;
  }
  .tableau-main .overview .overview-container .overview-image {
    width: 45%;
    margin-top: 0;
    position: sticky;
    top: 52px;
    height: fit-content;
  }
  .tableau-main .file-type {
    padding: 3rem 2rem;
  }
  .tableau-main .file-type .file-container span .file-ipad {
    display: flex;
  }
  .tableau-main .file-type .file-container span .file-mobile {
    display: none;
  }
  .tableau-main .course {
    padding: 3rem 2rem;
  }
  .tableau-main .course .course-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .tableau-main .course .course-container .course-content {
    margin-top: 0;
    order: 1;
    width: 38%;
  }
  .tableau-main .course .course-container .course-content .course-item {
    width: 100%;
  }
  .tableau-main .course .course-container .why-content {
    width: 56%;
    order: 2;
  }
  .tableau-main .delivery {
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
  }
  .tableau-main .delivery canvas {
    display: flex;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    z-index: -1;
  }
  .tableau-main .delivery .delivery-container .delivery-list {
    flex-direction: row;
    justify-content: space-between;
  }
  .tableau-main .delivery .delivery-container .delivery-list .item {
    width: 22%;
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 2rem;
  }
  .tableau-main .delivery .delivery-container .delivery-list .item span {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
  .tableau-main .principles {
    padding: 3rem 2rem;
    padding-bottom: 2rem;
  }
  .tableau-main .principles .principles-container .principles-content ul {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .tableau-main .principles .principles-container .principles-content ul li {
    width: 48%;
  }
  .tableau-main .principles .principles-container .principles-content ul li:nth-last-child(2) {
    margin-bottom: 0;
  }
  .tableau-main .principles .principles-container .principles-img {
    width: 60%;
    align-self: center;
  }
  .tableau-main .limited-offer {
    padding: 3rem 2rem;
    background-image: url('/_public/images/tableau/offer-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }
  .tableau-main .limited-offer .offer-container {
    flex-direction: row;
    justify-content: space-between;
    width: 90%;
    margin: auto;
  }
  .tableau-main .limited-offer .offer-container span {
    margin-bottom: 0;
  }
  .tableau-main .limited-offer .offer-container .offer-content {
    width: 35%;
  }
  .tableau-main .limited-offer .offer-container .offer-content h2,
  .tableau-main .limited-offer .offer-container .offer-content p {
    text-align: left;
  }
  .tableau-main .limited-offer .offer-container .buttons {
    margin-top: 0;
    width: 24%;
    justify-content: flex-end;
  }
  .tableau-main .architecture-budget {
    padding: 3rem 2rem;
    padding-top: 2rem;
  }
  .tableau-main .architecture-budget .architecture-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .tableau-main .architecture-budget .architecture-container .architecture {
    width: 48%;
    align-self: center;
  }
  .tableau-main .architecture-budget .architecture-container .limited-budget {
    width: 48%;
    margin-top: 0;
    background-image: url('/_public/images/tableau/budget-bg.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-color: transparent;
    padding: 4rem 2rem;
    padding-bottom: 2rem;
  }
  .tableau-main .how {
    padding: 3rem 2rem;
  }
  .tableau-main .how .how-container .fact-content .fact-list {
    width: 100%;
  }
  .tableau-main .how .how-container .fact-content .fact-list .fact-item {
    width: 23%;
    padding: 1rem;
  }
  .tableau-main .choose-us {
    padding: 3rem 2rem;
  }
  .tableau-main .choose-us .choose-container .choose-list {
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .tableau-main .choose-us .choose-container .choose-list .choose {
    width: 48%;
  }
  .tableau-main .choose-us .choose-container .choose-list .choose:first-child {
    margin-top: 1.5rem;
  }
  .tableau-main .faq-review {
    padding: 3rem 2rem;
    padding-top: 0;
  }
  .tableau-main .faq-review .faq-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .tableau-main .faq-review .faq-container .faq {
    width: 50%;
  }
  .tableau-main .faq-review .faq-container .review {
    width: 47%;
    margin-top: 0;
    position: sticky;
    height: fit-content;
    top: 70px;
  }
  .tableau-main .footer {
    padding: 3rem 2rem;
  }
  .tableau-main .footer .form-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .tableau-main .footer .form-container .form-content {
    width: 40%;
  }
  .tableau-main .footer .form-container .form {
    width: 55%;
    margin-top: 0;
  }
  .tableau-main .footer .form-container .form .input-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .tableau-main .footer .form-container .form .input-list .input-container {
    width: 48%;
  }
  .tableau-main .footer .form-container .form .input-list .input-container:last-child {
    width: 100%;
  }
}
@media (min-width : 1024px) {
  .tableau-main p {
    line-height: 1.8;
  }
  .tableau-main .heading h2 {
    font-size: 28px;
  }
  .tableau-main .banner {
    background-color: transparent;
    background-image: url(/_public/images/tableau/banner-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 0;
  }
  .tableau-main .banner .logo-container {
    padding: 1rem 2rem;
    background-color: #ffffff;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  }
  .tableau-main .banner .logo-container .container {
    padding: 0;
    background-color: transparent;
  }
  .tableau-main .banner .logo-container .container .menu {
    display: none;
  }
  .tableau-main .banner .logo-container .container .menu-links {
    width: 78%;
    display: flex;
    background-color: transparent;
    position: relative;
    box-shadow: none;
    justify-content: flex-end;
  }
  .tableau-main .banner .logo-container .container .menu-links .menu-toggle {
    display: none;
  }
  .tableau-main .banner .logo-container .container .menu-links ul {
    display: flex;
    align-items: center;
  }
  .tableau-main .banner .logo-container .container .menu-links ul .links-li {
    border-bottom: none;
    margin-right: 1rem;
    padding: 0;
  }
  .tableau-main .banner .logo-container .container .menu-links ul .links-li:last-child {
    display: flex;
    margin: 0;
  }
  .tableau-main .banner .logo-container .container .menu-links ul .links-li .link {
    font-weight: 600;
    color: #000000;
    position: relative;
    z-index: 1;
  }
  .tableau-main .banner .logo-container .container .menu-links ul .links-li .link::before {
    content: '';
    width: 0;
    height: 3px;
    background-color: #041427;
    position: absolute;
    bottom: -5px;
    transition: 0.5s ease-in-out;
  }
  .tableau-main .banner .logo-container .container .menu-links ul .links-li .link:hover::before {
    width: 100%;
  }
  .tableau-main .banner .logo-container .container .menu-links ul .buttons .btn-yellow,
  .tableau-main .banner .logo-container .container .menu-links ul .buttons .btn-white {
    min-width: 161px;
    min-height: 39px;
  }
  .tableau-main .banner .logo-container .container .menu-links ul .buttons .btn-white {
    margin-right: 1rem;
    box-shadow: none;
  }
  .tableau-main .banner .logo-container .container .menu-links ul .buttons .btn-white:hover::before {
    background-color: #EEC969;
  }
  .tableau-main .banner .banner-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 2rem;
  }
  .tableau-main .banner .banner-container .banner-content {
    width: 50%;
  }
  .tableau-main .banner .banner-container .banner-info {
    display: flex;
    margin-top: 0;
    padding: 0;
    background-color: transparent;
    width: 46%;
    align-self: flex-start;
  }
  .tableau-main .overview .overview-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .tableau-main .overview .overview-container .overview-content {
    width: 48%;
  }
  .tableau-main .overview .overview-container .overview-image {
    width: 48%;
    position: static;
    top: 0;
  }
  .tableau-main .course .course-container .course-content {
    width: 47%;
  }
  .tableau-main .course .course-container .course-content .heading {
    margin-bottom: 2rem;
  }
  .tableau-main .course .course-container .course-content .course-item {
    flex-direction: row;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
  }
  .tableau-main .course .course-container .course-content .course-item::before {
    content: '';
    background-image: url('/_public/images/tableau/book-bg.png');
    background-repeat: no-repeat;
    background-size: contain;
    width: 120px;
    height: 120px;
    position: absolute;
    top: -14px;
    left: 14px;
    z-index: -1;
  }
  .tableau-main .course .course-container .course-content .course-item span {
    display: none;
  }
  .tableau-main .course .course-container .course-content .course-item .course-info {
    width: 70%;
  }
  .tableau-main .course .course-container .why-content {
    width: 48%;
  }
  .tableau-main .delivery .delivery-container .delivery-list .item{
    padding: 1.5rem;
  }
  .tableau-main .principles .principles-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .tableau-main .principles .principles-container .principles-content {
    width: 58%;
  }
  .tableau-main .principles .principles-container .principles-img {
    width: 40%;
    margin-top: 0;
  }
  .tableau-main .limited-offer {
    padding: 2rem;
  }
  .tableau-main .limited-offer .offer-container {
    width: 80%;
  }
  .tableau-main .limited-offer .offer-container .offer-content {
    width: 40%;
  }
  .tableau-main .architecture-budget .architecture-container .limited-budget {
    width: 44%;
    height: fit-content;
    align-self: center;
  }
  .tableau-main .how {
    background-image: url('/_public/images/tableau/facts-bg.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-color: transparent;
    padding-bottom: 4rem;
  }
  .tableau-main .how .how-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .tableau-main .how .how-container .work-content {
    width: 48%;
    align-items: flex-start;
  }
  .tableau-main .how .how-container .work-content p {
    text-align: left;
  }
  .tableau-main .how .how-container .fact-content {
    width: 48%;
    margin-top: 0;
  }
  .tableau-main .how .how-container .fact-content .fact-list {
    width: 68%;
    transform: rotate(45deg) translate(58px, 48px);
  }
  .tableau-main .how .how-container .fact-content .fact-list .fact-item {
    width: 150px;
    height: 150px;
    margin-top: 0;
  }
  .tableau-main .how .how-container .fact-content .fact-list .fact-item .fact {
    transform: rotate(-45deg);
    align-items: center;
  }
  .tableau-main .how .how-container .fact-content .fact-list .fact-item:first-child {
    margin-top: 0;
  }
  .tableau-main .how .how-container .fact-content .fact-list .fact-item:nth-child(3),
  .tableau-main .how .how-container .fact-content .fact-list .fact-item:last-child {
    margin-top: 1rem;
  }
  .tableau-main .choose-us {
    padding-top: 0;
  }
  .tableau-main .choose-us .choose-container {
    align-items: initial;
  }
  .tableau-main .choose-us .choose-container .choose-list .choose {
    height: 320px;
    width: 23%;
  }
  .tableau-main .choose-us .choose-container .choose-list .choose h3 {
    min-height: 50px;
    font-size: 18px;
  }
  .tableau-main .faq-review .faq-container .faq {
    width: 51%;
  }
  .tableau-main .faq-review .faq-container .faq .faq-list .faq-name .ques h3 {
    width: 88%;
  }
  .tableau-main .faq-review .faq-container .review {
    width: 45%;
  }
  .tableau-main .faq-review .faq-container .review .review-list .review-content {
    width: 79%;
  }
  .tableau-main .faq-review .faq-container .review .review-list .owl-nav {
    width: 100%;
    position: absolute;
    top: 35%;
    left: 4px;
    margin-top: 0;
    display: flex;
    justify-content: space-between;
  }
  .tableau-main .faq-review .faq-container .review .review-list .owl-nav .owl-prev,
  .tableau-main .faq-review .faq-container .review .review-list .owl-nav .owl-next {
    background-image: url(/_public/images/tableau/review-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    outline: 0;
    width: 32px;
    height: 32px;
    opacity: 0.5;
  }
  .tableau-main .faq-review .faq-container .review .review-list .owl-nav .owl-prev span,
  .tableau-main .faq-review .faq-container .review .review-list .owl-nav .owl-next span {
    display: none;
  }
  .tableau-main .faq-review .faq-container .review .review-list .owl-nav .owl-next {
    transform: rotate(180deg);
  }
  .tableau-main .faq-review .faq-container .review .review-list .owl-nav .btn-active {
    opacity: 1;
  }
  .tableau-main .faq-review .faq-container .review .review-list .owl-dots {
    margin-top: 1.5rem;
  }
  .tableau-main .footer {
    background: url(/_public/images/tableau/footer-bg.png), linear-gradient(to right, #ffffff 14%, #041427 14%);
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: 41% 78%,100%;
    background-color: transparent;
  }
  .tableau-main .footer .form-container {
    align-items: flex-end;
  }
  .tableau-main .footer .form-container .form-content {
    width: 37%;
    background-color: transparent;
    align-items: center;
    padding: 0;
  }
  .tableau-main .footer .form-container .form-content p {
    text-align: center;
  }
  .tableau-main .footer .form-container .form-content .contact-list {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
  .tableau-main .footer .form-container .form-content .contact-list .contact {
    width: 36%;
  }
  .tableau-main .footer .form-container .form-content .contact-list .contact h3 {
    margin-bottom: 0.5rem;
  }
  .tableau-main .footer .form-container .form-content .contact-list .contact:nth-last-child(2) {
    width: 61%;
  }
  .tableau-main .footer .form-container .form {
    width: 56%;
  }
}
@media (min-width : 1366px) {
  .tableau-main .container {
    width: 1200px;
    margin: 0 auto;
  }
  .tableau-main .heading h2 {
    font-size: 32px;
  }
  .tableau-main .buttons .btn-yellow,
  .tableau-main .buttons .btn-white {
    font-size: 18px;
  }
  .tableau-main .banner {
    padding-bottom: 8rem;
  }
  .tableau-main .banner .logo-container {
    padding: 1rem 0;
  }
  .tableau-main .banner .logo-container .container .menu-links ul .links-li {
    margin-right: 2rem;
  }
  .tableau-main .banner .logo-container .container .menu-links ul .buttons .btn-yellow,
  .tableau-main .banner .logo-container .container .menu-links ul .buttons .btn-white {
    min-width: 175px;
    min-height: 42px;
  }
  .tableau-main .banner .banner-container {
    padding: 0;
    padding-top: 2rem;
  }
  .tableau-main .banner .banner-container .banner-content {
    width: 42%;
  }
  .tableau-main .banner .banner-container .banner-info {
    width: 44%;
  }
  .tableau-main .overview {
    padding: 4rem 0rem;
  }
  .tableau-main .overview .overview-container {
    position: relative;
    z-index: 1;
  }
  .tableau-main .overview .overview-container::before {
    content: '';
    width: 80px;
    height: 80px;
    background-image: url(/_public/images/tableau/triangle.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -30px;
    left: 400px;
    opacity: 0.2;
    animation: animate 10s linear infinite;
  }
  .tableau-main .file-type {
    padding: 4rem 0rem;
  }
  .tableau-main .course {
    padding: 4rem 0rem;
  }
  .tableau-main .course .course-container .course-content {
    width: 40%;
  }
  .tableau-main .course .course-container .why-content {
    width: 55%;
  }
  .tableau-main .delivery {
    padding: 4rem 0rem;
  }
  .tableau-main .delivery .delivery-container p {
    width: 92% ;
    display: flex;
    align-self: center;
  }
  .tableau-main .delivery .delivery-container .delivery-list {
    justify-content: space-evenly;
  }
  .tableau-main .delivery .delivery-container .delivery-list .item {
    width: 19%;
  }
  .tableau-main .principles {
    padding: 4rem 0rem;
  }
  .tableau-main .principles .principles-container .principles-content ul li {
    width: 40%;
  }
  .tableau-main .principles .principles-container .principles-img {
    width: 33%;
  }
  .tableau-main .limited-offer {
    padding: 4rem 0rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  .tableau-main .limited-offer .offer-container {
    width: 77%;
  }
  .tableau-main .limited-offer .offer-container .offer-content {
    width: 41%;
  }
  .tableau-main .architecture-budget {
    padding: 4rem 0rem;
  }
  .tableau-main .how {
    padding: 4rem 0rem;
    padding-bottom: 8rem;
  }
  .tableau-main .how .how-container .work-content {
    width: 45%;
  }
  .tableau-main .how .how-container .fact-content .fact-list {
    width: 55%;
    transform: rotate(45deg) translate(65px, 56px);
  }
  .tableau-main .choose-us {
    padding: 4rem 0rem;
    padding-top: 0;
  }
  .tableau-main .choose-us .choose-container .choose-list .choose {
    height: 267px;
  }
  .tableau-main .choose-us .choose-container .choose-list .choose h3 {
    min-height: initial;
  }
  .tableau-main .faq-review {
    padding: 4rem 0rem;
    padding-top: 0;
  }
  .tableau-main .faq-review .faq-container .review .review-list .owl-nav {
    left: 0;
  }
  .tableau-main .footer {
    padding: 4rem 0rem;
    padding-bottom: 2rem;
  }
  .tableau-main .footer .form-container {
    position: relative;
    z-index: 1;
  }
  .tableau-main .footer .form-container::before {
    content: '';
    width: 170px;
    height: 170px;
    background-image: url(/_public/images/tableau/dot-circle.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: -110px;
    left: -70px;
    opacity: 0.2;
    z-index: -1;
    animation: cirlce-anim 10s linear infinite;
  }
  .tableau-main .footer .form-container .form-content {
    padding: 0 2rem;
  }
  .tableau-main .footer .form-container .form-content .buttons {
    margin-top: 2rem;
  }
}
@media (min-width : 1500px) {
  .tableau-main .banner {
    background: linear-gradient(to left, #f5f5f5 50%, #041427 50%);
    padding-bottom: 4rem;
  }
  .tableau-main .limited-offer {
    background-image: linear-gradient(180deg, #ebebeb 0%, #d5d5d5 50%, #d5d5d5 100%);
  }
  .tableau-main .limited-offer .offer-container .offer-content {
    width: 60%;
  }
  .tableau-main .choose-us {
    padding-top: 4rem;
  }
  .tableau-main .footer {
    background-image: none;
  }
  @keyframes cirlce-anim {
    0% {
      transform: translate(0px, 0px);
    }
    25% {
      transform: translate(150px, 20px) rotate(180deg);
    }
    50% {
      transform: translate(200px, 60px);
    }
    75% {
      transform: translate(100px, 10px) rotate(-180deg);
    }
    100% {
      transform: translate(0px, 0px);
    }
  }
  .tableau-main .footer .form-container .form-content {
    background-color: #EEC969;
    padding: 2rem;
  }
  .tableau-main .footer .form-container .form {
    background-color: #041427;
    padding: 2rem;

    width: 60%;
  }
}
@media (min-width : 1600px) {
  .tableau-main .how {
    background-color: #041427;
    background-image: none;
    padding-bottom: 6rem;
  }
  .tableau-main .choose-us {
    padding-top: 4rem;
  }
}
