@charset "UTF-8";
/* =============================
    TYPOGRAPHY CSS
================================ */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
}

h1, .h1 {
  font-size: 72px;
  letter-spacing: 0.7px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  h1, .h1 {
    font-size: 64px;
  }
}

h2, .h2 {
  font-size: 64px;
  letter-spacing: -0.5px;
  line-height: 72px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  h2, .h2 {
    font-size: 56px;
  }
}

h3, .h3 {
  font-size: 56px;
  letter-spacing: 0.4px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  h3, .h3 {
    font-size: 40px;
  }
}

h4, .h4 {
  font-size: 40px;
  letter-spacing: 0.35px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  h4, .h4 {
    font-size: 30px;
  }
}

h5, .h5 {
  font-size: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  h5, .h5 {
    font-size: 24px;
  }
}

h6, .h6 {
  font-size: 24px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  h6, .h6 {
    font-size: 16px;
  }
}

.font-weight-bold {
  font-weight: 700;
}

.font-weight-semi-bold {
  font-weight: 600;
}

.font-weight-medium {
  font-weight: 500;
}

.font-weight-regular {
  font-weight: 400;
}

.font-weight-light {
  font-weight: 300;
}

.body-font-size-lg {
  font-size: 20px;
}

.body-font-size {
  font-size: 16px;
}

.font-size-sm {
  font-size: 14px;
}

.font-size-xs {
  font-size: 12px;
}

.caption-font-size {
  font-size: 14px;
}

.text-justify {
  text-align: justify;
}

p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  p {
    font-size: 14px;
  }
}

/* =============================
    COMMON CSS
================================ */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: #fff;
  background: #697BDE;
  position: relative;
}
body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-image: url("../images/Vector.svg");
  background-position: 100% 50%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.list-style-disc {
  list-style-type: disc;
  padding-left: 2rem;
  margin-bottom: 1em;
}

ul.list-style-dia {
  list-style-type: none;
  padding-left: 2rem;
  margin-bottom: 1em;
}
ul.list-style-dia li {
  margin-bottom: 24px;
  position: relative;
}
ul.list-style-dia li:before {
  content: "◆";
  position: absolute;
  color: #ffffff;
  height: 17px;
  width: 17px;
  font-size: 24px;
  line-height: 24px;
  left: -32px;
}

ul.list-style-check {
  list-style-type: none;
  padding-left: 2rem;
  margin-bottom: 16px;
}
ul.list-style-check li {
  margin-bottom: 24px;
  position: relative;
}
ul.list-style-check li:before {
  content: "✓";
  position: absolute;
  color: #ffffff;
  height: 17px;
  width: 17px;
  font-size: 24px;
  line-height: 24px;
  left: -32px;
}

ul.list-style-dia-wline {
  list-style-type: none;
  padding-left: 3rem;
  margin-bottom: 1em;
}
ul.list-style-dia-wline li {
  padding-bottom: 24px;
  position: relative;
}
ul.list-style-dia-wline li:before {
  content: "◆";
  position: absolute;
  color: #ffffff;
  height: 17px;
  width: 17px;
  font-size: 24px;
  line-height: 24px;
  left: -48px;
}
ul.list-style-dia-wline li:not(:last-child):after {
  content: "";
  position: absolute;
  height: 100%;
  border-left: 1px dashed #ffffff;
  left: -39px;
  top: 12px;
}

a {
  text-decoration: none;
  color: #ffffff;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
a:hover, a:active {
  text-decoration: none;
  color: #3F3464;
}
a.section-link {
  position: relative;
}
a.section-link::after {
  content: "";
  background-image: url("../images/arrow-up.svg");
  position: absolute;
  width: 22px;
  height: 22px;
  bottom: 0;
}

button {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.text-orange {
  color: #FFB930;
}

@media only screen and (min-width: 1400px) {
  .container {
    max-width: 1200px;
  }
}
@media (max-width: 767px) {
  .container {
    padding: 0 20px;
  }
}

@media only screen and (min-width: 1400px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .container-fluid {
    padding: 0 44px;
  }
}

/* ============ scroll-top =============== */
.scroll-top {
  width: 45px;
  height: 45px;
  background: #ffffff;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #3F3464;
  border-radius: 5px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.scroll-top:hover {
  color: #ffffff;
  background: rgba(105, 123, 222, 0.8);
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

.pagination .page-item.active .page-link {
  background-color: transparent;
  border-color: #dee2e6;
  font-weight: 700;
  color: #fff;
}
.pagination .page-item .page-link {
  color: #fff;
}
.pagination .page-item .page-link .icon {
  font-size: 14px;
}

.section {
  padding: 100px 0 60px 0;
}
@media (max-width: 767px) {
  .section {
    padding: 20px 0 60px 0;
  }
}
@media (max-width: 767px) {
  .section h2 {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 32px;
  }
}
.section.banner {
  padding: 150px 0 100px;
}

.heading-section {
  padding-top: 120px;
}
@media (max-width: 767px) {
  .heading-section {
    padding-top: 120px;
  }
}
.heading-section h1 {
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .heading-section h1 {
    font-size: 32px;
    line-height: 40px;
  }
}

.card .avatar {
  width: 37px;
  height: 37px;
}
.card.card-style-1 .image-left img {
  width: 70px;
}

.card-dia {
  background: rgba(255, 255, 255, 0.05);
  border: 2px dashed #ffffff;
  padding: 72px 88px;
  margin-bottom: 100px;
  position: relative;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .card-dia {
    margin-bottom: 90px;
  }
}
.card-dia.image {
  padding: 12px;
}
.card-dia h5 {
  margin-bottom: 32px;
}
.card-dia h3.price {
  font-weight: 600;
  font-size: 72px;
  line-height: 84px;
}
@media (max-width: 767px) {
  .card-dia h3.price {
    font-size: 32px;
    line-height: 40px;
    float: left;
    margin-bottom: 0;
  }
}
.card-dia-sides {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.card-dia-sides:first-child::before, .card-dia-sides:first-child::after, .card-dia-sides:last-child::before, .card-dia-sides:last-child::after {
  content: "◆";
  position: absolute;
  color: #ffffff;
  height: 24px;
  width: 24px;
  font-size: 32px;
  line-height: 24px;
}
.card-dia-sides:first-child::before {
  left: -14px;
  top: -14px;
}
.card-dia-sides:first-child::after {
  left: -14px;
  bottom: -14px;
}
.card-dia-sides:last-child::before {
  right: -12px;
  top: -14px;
}
.card-dia-sides:last-child::after {
  right: -12px;
  bottom: -14px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .card-dia {
    padding: 50px 40px;
  }
}
@media (max-width: 767px) {
  .card-dia {
    padding: 60px 16px;
  }
}

.simple-cards img {
  margin-bottom: 24px;
}
.simple-cards h5 {
  font-weight: 600;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .simple-cards h5 {
    font-size: 20px;
    line-height: 24px;
  }
}
.simple-cards.masonry .grid .grid-item:nth-child(2) {
  padding-top: 200px;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .simple-cards.masonry .grid .grid-item:nth-child(2) {
    padding-top: 0;
  }
}

.xl-gutters {
  margin-right: -60px;
  margin-left: -60px;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .xl-gutters {
    margin-right: -5px;
    margin-left: -5px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .xl-gutters {
    margin-right: -14px;
    margin-left: -14px;
  }
}

.xl-gutters > [class*=col-] {
  padding-right: 60px;
  padding-left: 60px;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .xl-gutters > [class*=col-] {
    padding-right: 5px;
    padding-left: 5px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .xl-gutters > [class*=col-] {
    padding-right: 14px;
    padding-left: 14px;
  }
}

.plyr {
  --plyr-color-main: rgba(255, 255, 255, 0.15);
}
.plyr .plyr__control--overlaid {
  border: 2px solid white;
  width: 100px;
  height: 100px;
}
@media (max-width: 767px) {
  .plyr .plyr__control--overlaid {
    width: 70px;
    height: 70px;
  }
}
.plyr .plyr__control--overlaid svg {
  margin: auto;
  height: 24px;
  width: 24px;
}

.info-list_item {
  position: relative;
}
.info-list_item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: calc(100% - 65px);
  border-left: 1px dashed #fff;
  background: transparent;
  position: absolute;
  left: 102px;
  bottom: 0;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .info-list_item:not(:last-child)::after {
    height: calc(100% - 55px);
    left: 27px;
  }
}
.info-list_item-content {
  padding: 0 0 60px 205px;
  position: relative;
}
.info-list_item-content p {
  font-size: 20px;
  line-height: 32px;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .info-list_item-content {
    padding: 0 0 60px 65px;
  }
}
.info-list_item-content::after {
  content: "";
  width: 50px;
  height: 50px;
  border: 3px solid #fff;
  background: transparent;
  position: absolute;
  left: 77px;
  top: 7px;
  border-radius: 50%;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .info-list_item-content::after {
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    -webkit-transform: translate(7px, 7px);
    -moz-transform: translate(7px, 7px);
    -ms-transform: translate(7px, 7px);
    -o-transform: translate(7px, 7px);
    transform: translate(7px, 7px);
  }
}
.info-list_item-content::before {
  content: "•";
  position: absolute;
  line-height: 64px;
  text-align: center;
  font-size: 45px;
  width: 65px;
  height: 65px;
  background: transparent;
  border: 1px dashed #ffffff;
  border-radius: 50%;
  left: 70px;
  top: 0;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .info-list_item-content::before {
    left: 0;
    top: 0;
    width: 55px;
    height: 55px;
    line-height: 55px;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

.info-list-less-padding_item {
  position: relative;
}
.info-list-less-padding_item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: calc(100% - 65px);
  border-left: 1px dashed #fff;
  background: transparent;
  position: absolute;
  left: 32px;
  bottom: 0;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .info-list-less-padding_item:not(:last-child)::after {
    height: calc(100% - 55px);
    left: 27px;
  }
}
.info-list-less-padding_item-content {
  padding: 0 0 60px 135px;
  position: relative;
}
.info-list-less-padding_item-content p {
  font-size: 20px;
  line-height: 32px;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .info-list-less-padding_item-content {
    padding: 0 0 60px 65px;
  }
}
.info-list-less-padding_item-content::after {
  content: "";
  width: 50px;
  height: 50px;
  border: 3px solid #fff;
  background: transparent;
  position: absolute;
  left: 8px;
  top: 7px;
  border-radius: 50%;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .info-list-less-padding_item-content::after {
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    -webkit-transform: translate(7px, 7px);
    -moz-transform: translate(7px, 7px);
    -ms-transform: translate(7px, 7px);
    -o-transform: translate(7px, 7px);
    transform: translate(7px, 7px);
  }
}
.info-list-less-padding_item-content::before {
  content: "•";
  position: absolute;
  line-height: 64px;
  text-align: center;
  font-size: 45px;
  width: 65px;
  height: 65px;
  background: transparent;
  border: 1px dashed #ffffff;
  border-radius: 50%;
  left: 0;
  top: 0;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .info-list-less-padding_item-content::before {
    left: 0;
    top: 0;
    width: 55px;
    height: 55px;
    line-height: 55px;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}

.carousel.carousel-style-1 .carousel-control-next, .carousel.carousel-style-1 .carousel-control-prev {
  top: auto;
  bottom: -85px;
  z-index: 3;
}
.carousel.carousel-style-1 .carousel-control-next span i, .carousel.carousel-style-1 .carousel-control-prev span i {
  font-size: 25px;
  color: #fff;
}
.carousel.carousel-style-1 .carousel-control-prev {
  left: 25%;
}
.carousel.carousel-style-1 .carousel-control-next {
  right: 25%;
}
.carousel.carousel-style-1 .carousel-indicators {
  bottom: -90px;
}
.carousel.carousel-style-1 .carousel-indicators .active {
  background-color: #fff;
  border: 2px solid #fff !important;
}
.carousel.carousel-style-1 .carousel-indicators [data-bs-target] {
  width: 6px;
  height: 6px;
  border: 2px solid #C2D1D9;
  border-radius: 50%;
}

.floating-right-image {
  position: absolute;
  right: 0;
  width: 40%;
  top: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .floating-right-image {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 90%;
  }
}

.slider {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.slider.slick-initialized {
  opacity: 1;
}

.gallery_slider .slick-list {
  /* the slides */
  margin: 0 -32px 0 0;
  /* the slides */
}
.gallery_slider .slick-list .slick-slide {
  margin: 0 32px 0 0;
}
.gallery_slider .slick-arrow {
  width: 40px;
  height: 40px;
  font-weight: 700;
  border-radius: 50%;
  border: 2px solid #ffffff;
  line-height: 12px;
  color: #ffffff;
}
.gallery_slider .slick-arrow::before {
  opacity: 1;
}
.gallery_slider .slick-arrow.slick-prev {
  top: -100px;
  right: 56px;
  left: auto;
}
.gallery_slider .slick-arrow.slick-next {
  top: -100px;
  right: 0;
}
.gallery_slider .slick-arrow.slick-disabled {
  opacity: 0.5;
  border-color: transparent;
}

.centered-slider {
  margin-bottom: 80px !important;
}
.centered-slider .slick-list {
  /* the slides */
  margin: 0 -5px 0 0;
  /* the slides */
}
.centered-slider .slick-list .slick-slide {
  margin: 0 5px 0 0;
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: all 500ms ease-out 0s;
  -moz-transition: all 500ms ease-out 0s;
  -ms-transition: all 500ms ease-out 0s;
  -o-transition: all 500ms ease-out 0s;
  transition: all 500ms ease-out 0s;
  opacity: 0.86;
}
.centered-slider .slick-list .slick-slide.slick-center {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.centered-slider .slick-dots {
  display: none !important;
}
.centered-slider .slick-arrow {
  width: 40px;
  height: 40px;
  font-weight: 700;
  border-radius: 50%;
  border: 2px solid #ffffff;
  line-height: 12px;
  color: #ffffff;
}
.centered-slider .slick-arrow::before {
  opacity: 1;
}
.centered-slider .slick-arrow.slick-prev {
  bottom: -136px;
  top: auto;
  left: calc(50% - 90px);
}
.centered-slider .slick-arrow.slick-next {
  bottom: -136px;
  top: auto;
  right: calc(50% - 90px);
}
.centered-slider-card {
  padding: 5px;
  background: #ffffff;
  border-radius: 5px;
}
.centered-slider-card img {
  margin-bottom: 24px;
}
.centered-slider-card_details {
  padding: 0 19px 19px;
}
.centered-slider-card_details h5 {
  color: #3F3464;
  font-size: 24px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 10px;
}
.centered-slider-card_details p {
  color: #777E90;
  margin-bottom: 24px;
}
.centered-slider-card_details a {
  color: #3F3464;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}
.centered-slider-pagingInfo {
  text-align: center;
  font-size: 20px;
  line-height: 32px;
  font-weight: 600px;
}

.accordion .accordion-button:not(.collapsed) {
  box-shadow: none !important;
  background-color: transparent;
  color: #fff;
  font-weight: 700;
}
.accordion .accordion-button:focus {
  background-color: transparent;
}
.accordion .accordion-button:after {
  background-image: url("../images/misc/Plus.svg");
}
.accordion .accordion-button:not(.collapsed):after {
  background-image: url("../images/misc/minus.svg");
}
.accordion .accordion-button {
  color: #fff;
}

.pill {
  padding: 4px 16px;
  border: 1px solid #ffffff;
  box-sizing: border-box;
  backdrop-filter: blur(20px);
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  line-height: 24px;
}

/* =============================
    DEFAULT CSS
================================ */
.img-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.bg-gray {
  background-color: #F5F5F5;
}

.bg-default {
  background-color: #697BDE;
}

.bg-badge {
  background-color: #C2D1D9;
}

.light-text {
  color: #999;
}

.heading-color {
  color: #fff;
}

.badge {
  font-size: 14px;
  font-weight: normal;
}

input, textarea, button {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
input:focus, textarea:focus, button:focus {
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.nav-tabs.custom-nav-tabs-1 {
  border: none;
}
.nav-tabs.custom-nav-tabs-1 .nav-link.active {
  border-bottom: 3px solid #697BDE;
  color: #697BDE;
}
.nav-tabs.custom-nav-tabs-1 .nav-link {
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 30px;
}
.nav-tabs.custom-nav-tabs-vertical {
  border: none;
}
.nav-tabs.custom-nav-tabs-vertical .nav-link.active {
  font-weight: 600;
}
.nav-tabs.custom-nav-tabs-vertical .nav-item {
  border-bottom: 2px solid #F5F5F5;
}
.nav-tabs.custom-nav-tabs-vertical .nav-item .nav-link {
  border: none;
  color: #fff;
  padding-left: 0;
  font-size: 18px;
}
.nav-tabs.custom-nav-tabs-vertical .nav-item .nav-link i {
  color: #fff;
  margin-right: 0.7em;
}
.nav-tabs.post-nav {
  border: none;
  position: absolute;
  top: -20px;
}
.nav-tabs.post-nav .nav-link.active {
  color: #ffffff;
  background-color: #697BDE;
}
.nav-tabs.post-nav .nav-link {
  border: none;
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  background-color: #ffffff;
  margin-right: 20px;
  border-radius: 0;
  box-shadow: 0px 2px 3px rgba(112, 112, 112, 0.3);
  color: #697BDE;
}
@media (max-width: 767px) {
  .nav-tabs.post-nav .nav-link {
    margin-right: 10px;
    padding: 0.4rem 0.6rem;
    font-size: 16px;
  }
}

.body-color {
  color: #fff !important;
}

.radius-3 {
  border-radius: 3px;
}

.radius-10 {
  border-radius: 10px;
}

.radius-30 {
  border-radius: 30px;
}

.radius-50 {
  border-radius: 50px;
}

.radius-full {
  border-radius: 50%;
}

.radius-10-0 {
  border-radius: 10px 0px;
}

.b-default {
  border: 1px solid #CDCDCD;
}

/* ====== MARGIN PADDING ======= */
.mt-6 {
  margin-top: 6px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

.mt-205 {
  margin-top: 205px;
}

.mt-210 {
  margin-top: 210px;
}

.mt-215 {
  margin-top: 215px;
}

.mt-220 {
  margin-top: 220px;
}

.mt-225 {
  margin-top: 225px;
}

.mb-6 {
  margin-bottom: 6px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

.mb-205 {
  margin-bottom: 205px;
}

.mb-210 {
  margin-bottom: 210px;
}

.mb-215 {
  margin-bottom: 215px;
}

.mb-220 {
  margin-bottom: 220px;
}

.mb-225 {
  margin-bottom: 225px;
}

.ml-6 {
  margin-left: 6px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.mr-6 {
  margin-right: 6px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.pt-6 {
  padding-top: 6px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

.pt-205 {
  padding-top: 205px;
}

.pt-210 {
  padding-top: 210px;
}

.pt-215 {
  padding-top: 215px;
}

.pt-220 {
  padding-top: 220px;
}

.pt-225 {
  padding-top: 225px;
}

.pb-6 {
  padding-bottom: 6px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

.pb-205 {
  padding-bottom: 205px;
}

.pb-210 {
  padding-bottom: 210px;
}

.pb-215 {
  padding-bottom: 215px;
}

.pb-220 {
  padding-bottom: 220px;
}

.pb-225 {
  padding-bottom: 225px;
}

.pl-6 {
  padding-left: 6px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.pr-6 {
  padding-right: 6px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.w-1 {
  width: 1%;
}

.w-2 {
  width: 2%;
}

.w-3 {
  width: 3%;
}

.w-4 {
  width: 4%;
}

.w-5 {
  width: 5%;
}

.w-6 {
  width: 6%;
}

.w-7 {
  width: 7%;
}

.w-8 {
  width: 8%;
}

.w-9 {
  width: 9%;
}

.w-10 {
  width: 10%;
}

.w-11 {
  width: 11%;
}

.w-12 {
  width: 12%;
}

.w-13 {
  width: 13%;
}

.w-14 {
  width: 14%;
}

.w-15 {
  width: 15%;
}

.w-16 {
  width: 16%;
}

.w-17 {
  width: 17%;
}

.w-18 {
  width: 18%;
}

.w-19 {
  width: 19%;
}

.w-20 {
  width: 20%;
}

.w-21 {
  width: 21%;
}

.w-22 {
  width: 22%;
}

.w-23 {
  width: 23%;
}

.w-24 {
  width: 24%;
}

.w-25 {
  width: 25%;
}

.w-26 {
  width: 26%;
}

.w-27 {
  width: 27%;
}

.w-28 {
  width: 28%;
}

.w-29 {
  width: 29%;
}

.w-30 {
  width: 30%;
}

.w-31 {
  width: 31%;
}

.w-32 {
  width: 32%;
}

.w-33 {
  width: 33%;
}

.w-34 {
  width: 34%;
}

.w-35 {
  width: 35%;
}

.w-36 {
  width: 36%;
}

.w-37 {
  width: 37%;
}

.w-38 {
  width: 38%;
}

.w-39 {
  width: 39%;
}

.w-40 {
  width: 40%;
}

.w-41 {
  width: 41%;
}

.w-42 {
  width: 42%;
}

.w-43 {
  width: 43%;
}

.w-44 {
  width: 44%;
}

.w-45 {
  width: 45%;
}

.w-46 {
  width: 46%;
}

.w-47 {
  width: 47%;
}

.w-48 {
  width: 48%;
}

.w-49 {
  width: 49%;
}

.w-50 {
  width: 50%;
}

.w-51 {
  width: 51%;
}

.w-52 {
  width: 52%;
}

.w-53 {
  width: 53%;
}

.w-54 {
  width: 54%;
}

.w-55 {
  width: 55%;
}

.w-56 {
  width: 56%;
}

.w-57 {
  width: 57%;
}

.w-58 {
  width: 58%;
}

.w-59 {
  width: 59%;
}

.w-60 {
  width: 60%;
}

.w-61 {
  width: 61%;
}

.w-62 {
  width: 62%;
}

.w-63 {
  width: 63%;
}

.w-64 {
  width: 64%;
}

.w-65 {
  width: 65%;
}

.w-66 {
  width: 66%;
}

.w-67 {
  width: 67%;
}

.w-68 {
  width: 68%;
}

.w-69 {
  width: 69%;
}

.w-70 {
  width: 70%;
}

.w-71 {
  width: 71%;
}

.w-72 {
  width: 72%;
}

.w-73 {
  width: 73%;
}

.w-74 {
  width: 74%;
}

.w-75 {
  width: 75%;
}

.w-76 {
  width: 76%;
}

.w-77 {
  width: 77%;
}

.w-78 {
  width: 78%;
}

.w-79 {
  width: 79%;
}

.w-80 {
  width: 80%;
}

.w-81 {
  width: 81%;
}

.w-82 {
  width: 82%;
}

.w-83 {
  width: 83%;
}

.w-84 {
  width: 84%;
}

.w-85 {
  width: 85%;
}

.w-86 {
  width: 86%;
}

.w-87 {
  width: 87%;
}

.w-88 {
  width: 88%;
}

.w-89 {
  width: 89%;
}

.w-90 {
  width: 90%;
}

.w-91 {
  width: 91%;
}

.w-92 {
  width: 92%;
}

.w-93 {
  width: 93%;
}

.w-94 {
  width: 94%;
}

.w-95 {
  width: 95%;
}

.w-96 {
  width: 96%;
}

.w-97 {
  width: 97%;
}

.w-98 {
  width: 98%;
}

.w-99 {
  width: 99%;
}

.w-100 {
  width: 100%;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

/* =============================
    BUTTONS CSS
================================ */
.button {
  height: 56px;
  font-size: 18px;
  font-weight: 500;
  box-sizing: border-box;
  line-height: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  color: #3F3464;
  border: 1px dashed #ffffff;
  position: relative;
  z-index: 1;
  padding: 21px 32px;
  overflow: visible;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
}
.button::before {
  content: "";
  position: absolute;
  background: white;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  top: 5px;
  left: 5px;
  z-index: -1;
  transition: all 0.3s;
}
.button:hover:before {
  background: #3F3464 !important;
}
.button:hover {
  border-color: #3F3464 !important;
  color: #fff !important;
}
.header .sticky .button:hover:before {
  background: #e6bb0d !important;
}
.header .sticky .button:hover {
  border-color: #e6bb0d !important;
  color: #fff !important;
}
.mechlab__classdetails-subscribe .input-group-dia button:hover {
  background: #3f3464;
  color: #fff;
}
.button-dia {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.button-dia:first-child::before, .button-dia:first-child::after, .button-dia:last-child::before, .button-dia:last-child::after {
  content: "◆";
  position: absolute;
  color: #ffffff;
  height: 12px;
  width: 12px;
  font-size: 14px;
}
.button-dia:first-child::before {
  left: -7px;
  top: -7px;
}
.button-dia:first-child::after {
  left: -7px;
  bottom: -8px;
}
.button-dia:last-child::before {
  right: -7px;
  top: -7px;
}
.button-dia:last-child::after {
  right: -7px;
  bottom: -8px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .button {
    font-size: 14px;
    margin-right: 5px;
    padding: 0 14px;
  }
}
@media (max-width: 767px) {
  .button {
    margin-right: 5px;
    margin-bottom: 8px;
    font-size: 14px;
  }
}
.button.button-no-shadow {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.button.button-secondary {
  background: #ffffff;
  color: #697BDE;
}
.button.button-secondary .button-w-img-icon {
  background: #697BDE !important;
  color: #ffffff !important;
}
.button.button-secondary:hover {
  color: #697BDE;
}
.button.button-w-img {
  padding: 0 8px 0 14px;
}
.button.button-w-img .button-w-img-icon {
  background: #ffffff;
  border-radius: 50%;
  padding: 6px !important;
  color: #697BDE;
  margin-left: 10px;
  overflow: hidden;
  width: 30px;
  height: 30px;
  -webkit-box-shadow: 0px 2px 3px rgba(112, 112, 112, 0.3);
  -moz-box-shadow: 0px 2px 3px rgba(112, 112, 112, 0.3);
  box-shadow: 0px 2px 3px rgba(112, 112, 112, 0.3);
}
@media (max-width: 767px) {
  .button.button-w-img .button-w-img-icon {
    padding: 0 6px 0 12px;
  }
}
.button.button-w-img .button-w-img-icon img {
  display: block;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .button.button-w-img {
    padding: 0 8px 0 14px;
  }
}
.button i {
  padding-left: 10px;
}
.button:hover .button-w-img-icon.tb-animate img {
  -webkit-animation: toBottomFromTop 0.5s forwards;
  -moz-animation: toBottomFromTop 0.5s forwards;
  animation: toBottomFromTop 0.5s forwards;
}
.button:hover .button-w-img-icon.lr-animate img {
  -webkit-animation: toRightFromLeft 0.5s forwards;
  -moz-animation: toRightFromLeft 0.5s forwards;
  animation: toRightFromLeft 0.5s forwards;
}
.button.border-button {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
  padding: 12px 32px;
  height: 48px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.05);
}
.button.border-button::before {
  background: transparent;
}
.button.cards-button {
  background: transparent;
  color: #ffffff;
  border-color: #3F3464;
  padding: 21px 30px;
  height: 48px;
  font-size: 18px;
  line-height: 1;
  width: 100%;
}
.button.cards-button::before {
  background: #3F3464;
}
.button.cards-button .button-dia:first-child::before, .button.cards-button .button-dia:first-child::after, .button.cards-button .button-dia:last-child::before, .button.cards-button .button-dia:last-child::after {
  color: #3F3464 !important;
}
.button.border-button-animate {
  background: transparent;
  width: 120px;
  height: 120px;
  color: #FFB930;
  border: 1px dashed #ffffff;
  border-radius: 50%;
  font-size: 20px;
}
.button.border-button-animate::before {
  content: "";
  position: absolute;
  background: transparent;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  top: 16px;
  left: 16px;
  z-index: -1;
  border: 3px solid #ffffff;
  border-radius: 50%;
}

.button-lg {
  height: 64px;
  font-weight: 600;
}

.button-md {
  height: 42px;
}

.button-sm {
  height: 34px;
  font-size: 16px;
  font-weight: 400;
}

@-webkit-keyframes toRightFromLeft {
  49% {
    -webkit-transform: translate(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
@-moz-keyframes toRightFromLeft {
  49% {
    -moz-transform: translate(100%);
  }
  50% {
    opacity: 0;
    -moz-transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toRightFromLeft {
  49% {
    transform: translate(100%);
  }
  50% {
    opacity: 0;
    transform: translate(-100%);
  }
  51% {
    opacity: 1;
  }
}
@-webkit-keyframes toBottomFromTop {
  49% {
    -webkit-transform: translateY(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
@-moz-keyframes toBottomFromTop {
  49% {
    -moz-transform: translateY(100%);
  }
  50% {
    opacity: 0;
    -moz-transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes toBottomFromTop {
  49% {
    transform: translateY(100%);
  }
  50% {
    opacity: 0;
    transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
.button-link .btn-icon {
  margin-left: 7px;
  font-size: 14px;
}

/* =============================
    HEADER-4 CSS
================================ */
.header {
  background: #ffffff;
}
.header .navbar {
  padding: 20px 0;
  border-radius: 0px;
  position: relative;
  -webkit-animation: fadeInDown 0.5s ease-out 0.2s both;
  -moz-animation: fadeInDown 0.5s ease-out 0.2s both;
  -o-animation: fadeInDown 0.5s ease-out 0.2s both;
  animation: fadeInDown 0.5s ease-out 0.2s both;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .navbar {
    padding: 17px 0;
  }
}
@media (max-width: 767px) {
  .header .navbar {
    padding: 17px 0;
  }
}
.header .navbar-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
.header .navbar-area.w-color {
  background-color: #697BDE;
}
@media (max-width: 767px) {
  .header .header-cta .button {
    padding: 10px 16px;
  }
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header .header-cta {
    display: none;
  }
}
.header .sticky {
  position: fixed;
  z-index: 99;
  background-color: #fff;
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-out 0s;
}
.header .sticky .navbar-brand {
  color: #3F3464;
}
.header .sticky .navbar {
  padding: 10px 0;
}
.header .sticky .navbar .navbar-nav .nav-item a {
  color: #3F3464;
}
.header .sticky .navbar .navbar-nav .nav-item a::after, .header .sticky .navbar .navbar-nav .nav-item a::before {
  opacity: 0.5;
  background: #697BDE;
}
.header .sticky .navbar .navbar-toggler .toggler-icon {
  background: #fff;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .sticky .navbar {
    padding: 10px 0;
  }
}
@media (max-width: 767px) {
  .header .sticky .navbar {
    padding: 10px 0;
  }
}
.header .sticky .header-cta .button {
  border-color: #3F3464;
}
.header .sticky .header-cta .button::before {
  background: #3F3464;
}
.header .sticky .header-cta .button-dia:first-child::before, .header .sticky .header-cta .button-dia:first-child::after, .header .sticky .header-cta .button-dia:last-child::before, .header .sticky .header-cta .button-dia:last-child::after {
  color: #3F3464;
}
.header .navbar-brand {
  padding: 0;
  transition: all 0.3s ease-out 0s;
  font-weight: 700;
  color: #ffffff;
}
.header .navbar-brand img {
  max-width: 180px;
  height: 60px;
}
@media (max-width: 767px) {
  .header .navbar-brand img {
    max-width: 140px;
    height: 46px;
  }
}
.header .navbar-toggler {
  padding: 0;
}
.header .navbar-toggler:focus {
  outline: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.header .navbar-toggler .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #fff;
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.header .navbar-toggler.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}
.header .navbar-toggler.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}
.header .navbar-toggler.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}
.header .navbar-collapse {
  text-align: center;
}
header.header img.logo-animated {
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.3s;
}
header.header img.logo {
  opacity: 1;
  transition: all 0.3s;
}
.header .sticky img.logo {
  opacity: 0;
}
.header .sticky img.logo-animated {
  opacity: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 5px 12px;
  }
}
@media (max-width: 767px) {
  .header .navbar-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(255, 255, 255, 0.1);
    -moz-box-shadow: 0px 15px 20px 0px rgba(255, 255, 255, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
  }
}
.header .collapse-cta {
  display: none;
}
.header .collapse-cta .button {
  border-color: #3F3464;
  width: 100%;
}
.header .collapse-cta .button::before {
  background: #3F3464;
}
.header .collapse-cta .button-dia:first-child::before, .header .collapse-cta .button-dia:first-child::after, .header .collapse-cta .button-dia:last-child::before, .header .collapse-cta .button-dia:last-child::after {
  color: #3F3464;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header .collapse-cta {
    display: block;
  }
}
.header .navbar-nav .nav-item {
  position: relative;
}
.header .navbar-nav .nav-item:not(:last-child) {
  margin-right: 35px;
}
@media (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header .navbar-nav .nav-item:not(:last-child) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header .navbar-nav .nav-item:not(:last-child) {
    margin-right: 20px;
  }
}
.header .navbar-nav .nav-item a {
  font-size: 16px;
  font-weight: normal;
  color: #fff;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 10px 0px;
  position: relative;
  display: inline-block;
  z-index: 1;
}
@media (max-width: 767px) {
  .header .navbar-nav .nav-item a {
    color: #3F3464;
  }
}
.header .navbar-nav .nav-item a:hover {
  color: #E1E5F8;
}
.header .navbar-nav .nav-item a.active {
  font-weight: 600;
}
.header .navbar-nav .nav-item:hover .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}
@media (max-width: 767px) {
  .header .navbar-nav .nav-item:hover .sub-menu {
    top: 0;
  }
}
.header .navbar-nav .nav-item .sub-menu {
  width: 200px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 110%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}
@media (max-width: 767px) {
  .header .navbar-nav .nav-item .sub-menu {
    position: relative;
    width: 100%;
    top: 0;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}
.header .navbar-nav .nav-item .sub-menu li {
  display: block;
}
.header .navbar-nav .nav-item .sub-menu li a {
  display: block;
  padding: 8px 20px;
  color: #2F2F2F;
}
.header .navbar-nav .nav-item .sub-menu li a.active, .header .navbar-nav .nav-item .sub-menu li a:hover {
  padding-left: 25px;
  color: #697BDE;
}
.header .navbar-nav .sub-nav-toggler {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #2F2F2F;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  .header .navbar-nav .sub-nav-toggler {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    background: none;
    color: #2F2F2F;
    font-size: 18px;
    border: 0;
    width: 30px;
    height: 30px;
  }
}
.header .navbar-nav .sub-nav-toggler span {
  width: 8px;
  height: 8px;
  border-left: 1px solid #2F2F2F;
  border-bottom: 1px solid #2F2F2F;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: relative;
  top: -5px;
}

/* ============================= 
    FOOTER-1 CSS
================================ */
.mechlab__footer {
  background: transparent;
  padding-top: 90px;
}
.mechlab__footer-content {
  margin-bottom: 50px;
}
.mechlab__footer-content h3 {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .mechlab__footer-content h3 {
    font-size: 20px;
    line-height: 32px;
  }
}
.mechlab__footer-content p {
  font-size: 16px;
  line-height: 28px;
  color: #E1E5F8;
  margin-bottom: 42px !important;
}
.mechlab__footer-content .email {
  font-size: 16px;
  line-height: 28px;
  font-weight: 600;
  text-decoration-line: underline;
  margin-right: 35px;
}
.mechlab__footer-content .socials {
  font-size: 32px;
  display: flex;
  align-items: center;
}
.mechlab__footer-content .socials li {
  margin-right: 35px;
}
.mechlab__footer-copyright {
  padding: 24px 0;
  background: #ffffff;
  align-items: center;
  display: flex;
}
.mechlab__footer-copyright a {
  font-size: 16px;
  line-height: 24px;
}
.mechlab__footer-copyright p {
  font-size: 14px;
  line-height: 24px;
}
.mechlab__footer-copyright p, .mechlab__footer-copyright a {
  color: #777E90;
}

/*# sourceMappingURL=app.css.map */


/* global subscribe start */
.mechlab__classdetails-subscribe {
  padding: 100px 0 200px 0;
  position: relative;
}
.mechlab__classdetails-subscribe::after {
  content: "";
  top: 10%;
  left: 0;
  position: absolute;
  width: 30%;
  height: 100%;
  background: rgba(255, 255, 255, 0.61);
  opacity: 0.17;
  filter: blur(100px);
  z-index: -1;
  border-radius: 0 999px 999px 0;
}
.mechlab__classdetails-subscribe::before {
  content: "";
  position: absolute;
  bottom: -240px;
  left: 0;
  width: 100%;
  height: 475px;
  background-image: url("../images/cost-top-vector.svg");
  background-position: 100% 50%;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.mechlab__classdetails-subscribe .input-group-dia {
  border: 1px dashed #ffffff;
  position: relative;
  max-width: 500px;
  margin: auto;
  border-radius: 5px;
  padding: 5px;
}
.mechlab__classdetails-subscribe .input-group-dia input {
  background: none;
  border: none;
  box-shadow: none;
  padding: 21px 5px 21px 24px;
}
section.section.mechlab__classdetails-subscribe form#sib-form {
  width: 100%;
}
section.section.mechlab__classdetails-subscribe form#sib-form input.input--hidden {
  display: none;
}

body .subs-form form#sib-form button#button-addon2 svg.icon.clickable__icon.progress-indicator__icon {
  display: none !important;
  opacity: 0;
}

.subs-form form#sib-form button#button-addon2 svg.icon.clickable__icon.progress-indicator__icon.sib-hide-loader-icon path {
  display: none;
  opacity: 0;
}
@media (max-width: 767px) {
  .mechlab__classdetails-subscribe .input-group-dia input {
    padding: 12px 5px 12px 16px;
  }
}
.mechlab__classdetails-subscribe .input-group-dia input::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #E1E5F8;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
}
@media (max-width: 767px) {
  .mechlab__classdetails-subscribe .input-group-dia input::placeholder {
    font-size: 16px;
    line-height: 24px;
  }
}
.mechlab__classdetails-subscribe .input-group-dia button {
  width: 170px;
  background: #ffffff;
  border-radius: 4px !important;
  border: none;
  box-shadow: none;
  color: #3F3464;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .mechlab__classdetails-subscribe .input-group-dia button {
    width: 120px;
    font-size: 14px;
    line-height: 24px;
  }
  .mechlab__classdetails-subscribe{
    padding: 0px 0px 84px 0px !important;
  }
  .mechlab__footer{
    padding-top: 40px;
  }
  .card-dia{
    margin-bottom: 50px;
  }
}
/* global subscribe End */

#exampleModal .modal-dialog{
  max-width: 600px;
}
#exampleModal .modal-dialog h4,#exampleModal .modal-dialog h6{
  color: #000;
}
#exampleModal .modal-dialog h4{
  font-weight: 600;
  margin-bottom: 9px;
}
#exampleModal .modal-dialog{
  color: #525252;
}
#exampleModal .modal-dialog .modal-header-top{
  padding-bottom: 40px;
}
#exampleModal .modal-dialog .modal-footer{
  justify-content: center;
}
#exampleModal .modal-dialog a{
  color: #353e6f;
  text-decoration: underline;
  font-weight: 600;
}
#exampleModal .modal-dialog .btn-close{
  position: absolute;
  top: 15px;
  right: 15px;
}
#exampleModal .modal-dialog .modal-content{
  padding: 30px 20px;
  text-align: center;
}
@media screen and (max-width:767px){
  #exampleModal .modal-dialog .modal-content {
    padding: 20px 15px;
  }
  #exampleModal .modal-dialog .btn-close {
    top: 10px;
    right: 10px;
  }
}