.section {
  padding-top: 50px;
  padding-bottom: 50px;
}

.section .secTitle {
  color: #333;
  font-size: 32px;
  font-weight: bold;
}

.section .secDesc {
  margin: auto;
  max-width: 500px;
}

.title {
  font-size: 18px;
  font-weight: bold;
}

#profolio .title {
  text-align: center;
}

.lineClip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  width: 80px;
  height: 10px;
  margin: 20px auto;
}

.lineClip .top {
  width: 60%;
  height: 1px;
  background-color: #ddd;
}

.lineClip .bottom {
  width: 100%;
  height: 1px;
  background-color: #3bafda;
}

.imgCnt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.centerFlex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btwFlex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.btn {
  border-radius: 6px;
}

/*  =============================== navbar & footer =============================  */

.navbar-custom {
  top: 0;
}

.footer .footer-list li+li {
  padding-left: 8px;
}

.footer .footer-list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #3e4754;
  border-radius: 50%;
}

.footer .footer-list li a:hover {
  background-color: #262c34;
}

.footer .footer-list li a img {
  width: 16px;
  height: 16px;
}

/*  =============================== section =============================  */

section#home {
  padding-top: 70px;
}

section#home .block {
  height: 500px;
}

section#home .owl-carousel {
  background-color: #737373;
}

section#home .owl-carousel .owl-nav {
  position: absolute;
  margin-top: -16px;
  width: 100%;
  top: 50%;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

section#home .owl-carousel .owl-nav .owl-prev,
section#home .owl-carousel .owl-nav .owl-next {
  width: 32px;
  height: 32px;
  color: #fff;
  border: 1px #ddd solid;
  padding: 5px;
  border-radius: 50%;
  font-size: 20px;
}

section#home .owl-carousel .owl-dots {
  display: none;
}

section#profolio .owl-carousel {
  margin: auto;
}

section#profolio .owl-carousel .owl-nav {
  position: absolute;
  margin-top: -16px;
  width: 100%;
  top: 50%;
  left: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

section#profolio .owl-carousel .owl-nav .owl-prev,
section#profolio .owl-carousel .owl-nav .owl-next {
  width: 32px;
  height: 32px;
  color: #027D82;
  border: 1px #027D82 solid;
  padding: 5px;
  border-radius: 50%;
  font-size: 20px;
}

section#profolio .owl-carousel .owl-dots {
  text-align: center;
}

section#profolio .owl-carousel .owl-dots .owl-dot span {
  display: block;
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  transition: opacity .2s ease;
  border-radius: 30px;
}

section#profolio .owl-carousel .owl-dots .owl-dot.active span {
  background: #869791;
}

section#profolio .block {
  position: relative;
  width: 220px;
  height: 270px;
  margin: 20px auto 40px;
  perspective: 1000px;
}

section#profolio .block .flipper {
  transform-style: preserve-3d;
  transition: all 0.8s;
  transform-origin(0, 0);
}

section#profolio .block .flipper:active {
  transform: rotateY(180deg);
}

section#profolio .block .flipper .forwards,
section#profolio .block .flipper .backwards {
  position: absolute;
  top: 0;
  padding: 28px;
  aspect-ratio: 1/1.22;
  transform-style: preserve-3d;
}

section#profolio .block .flipper .forwards {
  left: 0;
  background: #fff url('../images/card.svg') no-repeat center;
  background-size: contain;
  backface-visibility: hidden;
  cursor: pointer;
  z-index: 12;
  width: 100%;
}

section#profolio .block .flipper .forwards>* {
  color: #027D82;
}

section#profolio .block .flipper .backwards {
  /* background-color: #57badf; */
  background-image: url(../images/backward-bg.jpg);
  right: 0;
  transform: rotateY(180deg);
  backface-visibility: hidden;
  z-index: 11;
}

section#profolio .block .flipper .backwards>* {
  color: #fff;
}

section#profolio .block .flipper:hover .forwards {
  z-index: 11;
}

section#profolio .block .flipper:hover .backwards {
  z-index: 12;
}

section#profolio .block.visible .flipper>div {
  backface-visibility: visible;
}

@media (max-width: 992px) {
  section#home {
    padding-top: 55px;
  }
}

@media (max-width: 480px) {
  section#profolio .owl-carousel .owl-nav {
    padding: 0;
  }
}


@media (max-width: 992px) {
  .main-banner {
    content: url(../images/Banner1-mb.jpg);
  }

  .sec-banner {
    content: url(../images/Banner2-mb.jpg);
  }
}

@media (max-width: 480px) {
  .main-banner {
    content: url(../images/Banner1-sm.jpg);
  }

  .sec-banner {
    content: url(../images/Banner2-sm.jpg);
  }
}

.avatar-md {
  position: relative;
}

.avatar-md img {
  width: 36px;
  height: 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#links {
  display: none;
}

.bg-blue {
  background: #696BF3;
}

.bg-orange {
  background: #FFAE43;
}

.bg-purple {
  background: #C16BD4 !important;
}

.bg-pink {
  background: #F0658F;
}

.bg-blue-light {
  background: #47A8E8;
}

.avatar-md {
  width: 60px;
  height: 60px;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: #027D82;
}

.nav-link:focus,
.nav-link:hover {
  color: #027D82;
}

#contact {
  background: #F3F2F2;
}

.contact-input {
  min-height: 50px;
}

.form-check-input:checked {
  background-color: #027D82;
  border-color: #027D82;
}

.btn-success {
  color: #fff;
  background-color: #027D82;
  border-color: #027D82;
  box-shadow: none;
}

.footer-notice,
.footer-notice a {
  color: #C2C4C8;
}

.w-132 {
  width: 132px;
}

.buyplanimg {
  max-width: 240px !important;
  position: relative;
}

.mb-sm-3 {
  @media (max-width: 480px) {
    margin-bottom: 1.5rem !important;
  }

}

.flex-sm-column {
  @media (max-width: 480px) {
    flex-direction: column
  }
}

.pe-sm-5 {
  @media (min-width: 480px) {
    padding-right: 4.5rem;
  }
}

.pricing-btn {
  width: 90px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #027D82;
  color: #027D82;
  font-size: 16px;
  position: absolute;
  bottom: 35px;
  left: 50%;
  transform: translateX(-50%);
}

.pricing-btn:hover {
  background: #027D82;
  color: white;
}

.table-btn {
  width: 90px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #027D82;
  color: #027D82;
  font-size: 16px;
  background: white;
}

.table-btn:hover {
  background: #027D82;
  color: white;
}

.table-container {
  overflow-x: auto;

}

table {

  width: 100%;
  border-collapse: collapse;
}

table th,
table tr,
table td {
  border: 1px solid #D7D9D8;
  text-align: center;
  padding: 15px;
  width: 20%;
  white-space: nowrap;

}

table th:nth-child(2) {
  background: #8EC9CB;
  color: white;
}

table th:nth-child(3) {
  background: #1F807B;
  color: white;
}

table th:nth-child(4) {
  background: #F2C161;
  color: white;
}

table th:nth-child(5) {
  background: #EE4854;
  color: white;
}

table .red-text {
  color: #EE4854;
}

table p {
  margin-bottom: 5px;
}

.green-bg {
  background: #ECF6F6;
}

.orange-bg {
  background: #FEF8ED;
}

.red-bg {
  background: #FCF3F4;
}

.price-off {
  position: relative;
}

.price-tag {
  position: absolute;
  right: 0;
  bottom: 0;

  @media (max-width: 992px) {
    width: 50px;
    right: -20px;
    bottom: 10px;
  }
}

.free-btn {
  width: 90px;
  height: 40px;
}

.text-uppercase {
  @media (max-width: 992px) {
    margin: 0 auto;
  }
}