@import url('fonts.css');
body {
  margin: 0;
  padding: 0;
  font-family: 'Agile Sans';
  font-weight: normal;
  font-style: normal;
  scroll-behavior: smooth;
}
ul {
  list-style: none;
}
.display-image{
  max-width:100%;
}
.planning-process-text span {
    color: #1a4cb9;
}
.text-heilight-light {
  color: #70a3d2;
}
.text-heilight {
  color: #284cb9;
}
/* Theme Animations */
.animated {
    background-repeat: no-repeat;
    background-position: left top;
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
 }

 @-webkit-keyframes fadeInLeft {
    0% {
       opacity: 0;
       -webkit-transform: translateX(500px);
    }
    100% {
       opacity: 1;
       -webkit-transform: translateX(0);
    }
 }

 @keyframes fadeInLeft {
    0% {
       opacity: 0;
       transform: translateX(500px);
    }
    100% {
       opacity: 1;
       transform: translateX(0);
    }
 }

 .fadeInLeft {
 -webkit-animation-name: fadeInLeft;
 animation-name: fadeInLeft;
 }

 @-webkit-keyframes fadeOutLeft {
    0% {
       opacity: 0;
       -webkit-transform: translateX(0);
    }
    100% {
       opacity: 1;
       -webkit-transform: translateX(-1000);
    }
 }

 @keyframes fadeOutLeft {
    0% {
       opacity: 0;
       transform: translateX(0);
    }
    100% {
       opacity: 1;
       transform: translateX(-1000px);
    }
 }

 .fadeOutLeft {
 -webkit-animation-name: fadeOutLeft;
 animation-name: fadeOutLeft;
 }
 animation-name: fadeInDown;
 .zoom img{
    position:fixed;
    top: 32%;
    left: 66%;
    height: 25%;
    max-width: 200%;
    /* width: 100%; */
    transform: translateX(-50%);
}

@keyframes showup {
    0% {opacity:0;}
    100% {opacity:1;}
}

@keyframes slidein {
    0% { margin-left:-800px; }
    20% { margin-left:-800px; }
    35% { margin-left:0px; }
    100% { margin-left:0px; }
}

@keyframes reveal {
    0% {opacity:0;width:0px;}
    20% {opacity:1;width:0px;}
    100% {opacity:1;width:100%;}
}


/* Theme Style */
.btn {
  border-radius: 0;
}
.btn-success {
  background-color: #7bd16e;
  border-color: #84d278;
}
.btn-danger {
  background-color: #fc5658;
  border-color: #ef5c5d;
}
.btn-primary {
  background-color: #1c52be;
  border-color: #1f50b3;
}
body.hide-overflow {
  overflow: hidden;
}
img.w-100 {
  width: 100%;
}
main.content-wrapper {
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
.section {
  padding: 20px 0;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
.text-small {
  font-size: 0.9rem;
}
.align-item-center {
  align-items: center;
}
.carousel-control-next-icon, .carousel-control-prev-icon {
  background-color: #86868680;
  border-radius: 5px;
}
.lined-bg {
  background-image: url("../img/cart-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.light-bg {
  background-color: #444b65;
  color: #fff;
}
.dark-bg {
  background-color: #1f2443;
  color: #fff;
}


/* Intro Section Style */
.intro-section {
  background-color: #13172a;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
  padding-top: 70px !important;
  margin-top: -100px;
  padding-bottom: 100px !important;
  transition: all ease-in-out 600ms;
}
.intro-section .intro-info {
  max-width: 500px;
  margin: auto;
  transition: all ease-in-out 600ms;
}
.intro-section .intro-title {
  margin-bottom: 25px;
}
.intro-section .intro-center-title {
  text-decoration: underline;
  margin-bottom: 25px;
  color: #4cc8f5!important;
}

/* Section Title Style */
.section-title h1 {
  text-align: center;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 0;
}
.section-title hr {
  margin: 30px auto 40px;
  max-width: 50px;
  height: 3px;
  opacity: 0.8;
  color: #4aa5ce;
  border-radius: 10px;
}


/* Header Style */
.navbar-brand {
  order: 2;
  width: auto !important;
}
.navbar-dark .navbar-toggler {
  order: 1;
}
.navbar-collapse {
  order: 4;
}
.user-links {
  order: 3;
}
.user-links .user-cart {
  position: relative;
}
.user-links .user-cart .cart-count {
  text-decoration: none;
  color: #fff;
  background: #5fb8da;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  border-radius: 50%;
  height: 15px;
  width: 15px;
  position: absolute;
  top: 0;
  right: 0;
  margin-top: -6px;
  margin-right: -7px;
}
.header .navbar {
  background-color: #13172a;
  padding-bottom: 10px;
  //clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
}
.brand-logo {
  max-width: 150px;
}
.navbar-nav {
  margin-left: auto !important;
  margin-right: 20px !important;
}
.navbar-dark .navbar-nav .nav-item {
  padding: 0.5rem 0 !important;
}
.navbar-dark .navbar-nav .nav-item:not(:last-child) .nav-link {
  border-right: 1px solid #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: #fff;
  padding: 0 1rem !important;
  font-size: 13px;
}
.navbar-dark .navbar-nav .nav-link.active {
  color: #3b9dc5;
}
.user-links {
  /*width: 100px;*/
  display: flex;
  color: #fff;
  justify-content: space-evenly;
}
.navbar-nav .dropdown-menu {
  background-color: #4e5163;
}
.navbar-nav .dropdown-menu .dropdown-item {
  color: #fff;
  font-size: 13px;
}

/* Footer Style */
.footer {
  background-color: #23294d;
}
.footer .footer-container {
  color: #fff;
  padding: 50px 0;
  margin: auto;
  font-weight: 300;
}
.footer .footer-container .footer-section {
  margin-bottom: 20px;
}
.footer .footer-container .footer-section-heading {
  margin-bottom: 30px;
  text-align: center;
}
.footer .footer-container .footer-logo {
  max-width: 250px;
  margin: auto;
}
.footer .footer-container .footer-info {
  font-size: 12px;
  text-align: justify;
}
.footer .footer-container .footer-section-heading {
  font-size: 1.2rem;
}
.footer .footer-container .footer-contact-details-container .footer-contact-block {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 13px;
}
.footer .footer-container .footer-contact-details-container .footer-contact-block .footer-contact-icon {
  margin-right: 15px;
  font-size: 1.1rem;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  background-color: #323b6f;
  border-radius: 10px;
  height: 35px;
  box-shadow: 0 0 5px 1px #21273370;
}
.footer .footer-container .footer-contact-details-container .footer-contact-block a, .footer .footer-container .footer-social-container a {
  text-decoration: none;
  color: #fff;
}
.footer .footer-container .footer-social-container {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  padding-top: 40px;
}
.footer .footer-container .footer-social-container .footer-social-icon {
  font-size: 1.1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  transition: all ease-in-out 200ms;
}
.footer .footer-container .footer-social-container .footer-social-icon:hover {
  transform: scale(1.2);
}
.footer .footer-container .footer-social-info .footer-social-name {
  margin: 0;
  font-size: 14px;
}
.footer .footer-container .footer-social-info .footer-social-link {
  margin: 0;
  font-size: 11px;
}
.footer .footer-container .footer-menu {
  padding-left: 15%;
}
.footer-menu li a {
  font-size: 15px;
  text-decoration: none !important;
  color: #fff !important;
}
.footer .footer-container .footer-phone {
  margin: 45px 0;
  text-align: center;
  font-size: 28px;
  color: #1c52be;
}
.footer-bottom-bar {
  background: #000;
  padding: 15px 50px;
}
.footer-bottom-bar .bottom-navbar-container {
  display: flex;
  color: #737373;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.footer-bottom-bar .bottom-navbar-container .payment-image-block .payment-icon-list li {
  margin-right: 10px;
}
.footer-bottom-bar .bottom-navbar-container .payment-image-block .payment-icon-list li img {
  max-height: 30px;
}
.bottom-policy-menu .bottom-navbar {
  display: flex;
  flex-wrap: wrap;
  margin-right: 20px;
  padding: 0;
  margin-bottom: 0;
}
.bottom-policy-menu .bottom-navbar-item {
  margin-right: 15px;
}
.bottom-policy-menu .bottom-navbar-link {
  text-decoration: none;
  color: #737373;
  font-size: 12px;
}
.bottom-social-container .bottom-social {
  display: flex;
  margin-bottom: 0;
}
.bottom-social-container .bottom-social-item {
  margin-right: 15px;
}
.bottom-social-container .bottom-social-link {
  color: #1c52be;
}

/* Cart Page Style */
.main-container {
  padding: 50px 0;
}
.cart-header, .page-header {
  text-align: center;
}
.cart-header p, .page-header p {
  color: #a3a3a3;
  font-size: 18px;
  margin-bottom: 20px;
}
.cart-header hr, .page-header hr {
  width: 50px;
  margin: 20px auto;
  background: #f83434;
  height: 4px;
  opacity: 1;
}
.cart-summery table {
  text-align: center;
  vertical-align: middle;
}
.cart-item-image img {
  max-width: 90px;
}
.cart-item-name {
  text-align: left;
}
.cart-item-name h4, .cart-item-name p {
  margin-bottom: 0;
}
.cart-item-name p {
  color: #c0c0c0;
  font-size: 14px;
}
.cart-item-action a {
  color: #fc5658;
}
.cart-action-bar {
  background: #ececec;
  padding: 15px;
  display: flex;
}
.cart-action-bar .cart-action-left {
  flex: 1;
}
.cart-total-section {
  margin: 50px auto 0;
  width: 30%;
  background: #ececec;
  padding: 20px 25px;
  text-align: center;
}
.cart-shipping td:first-child {
  text-align: left;
  color: #8c8c8c;
}
.cart-shipping td:last-child {
  text-align: right;
  color: #7bd16e;
  font-size: 20px;
}
.cart-total td:first-child {
    text-align: left;
    font-size: 14px;
    font-weight: bold;
    padding: .5rem .5rem;
}
.cart-total td:last-child {
    text-align: right;
    color: #fc5658;
    font-size: 14px;
    font-weight: bold;
}

/* Checkout Page Style */
.checkout-voucher-section, .checkout-total-section {
  margin: 50px auto 0;
  background: #ececec;
  padding: 20px 25px;
  text-align: center;
}
.checkout-voucher-section {
  text-align: left;
}
.checkout-voucher-section input {
  border-radius: 0;
}
.checkout-voucher-section p {
  color: #8c8c8c;
}
.checkout-detail-tiles-section {
  margin: 30px 0;
}
.checkout-detail-tile {
  padding: 5px 15px;
  border: 1px solid #a5a5a5;
  color: #a5a5a5;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  transition: all ease-in-out 200ms;
  height: 100%;
}
.checkout-address-tile {
  width: 100%;
  text-decoration: none;
  height: 100%;
}
.checkout-detail-tile:hover {
  transform: scale(1.03);
}
.checkout-detail-tile-icon {
  font-size: 50px;
  margin: auto 10px auto 0;
}
.checkout-detail-tile-info {
  margin: auto;
  margin-top: 7px;
}
.checkout-detail-tile-info h4 {
  font-size: 20px;
}
.checkout-detail-tile-info span {
  font-size: 16px;
}
.checkout-detail-tile-info p {
  margin-bottom: 0;
}
.checkout-detail-tile-status {
  display: none;
}
.checkout-detail-tile.success .checkout-detail-tile-status {
  display: block;
  font-size: 22px;
}
.checkout-detail-tile.success {
  background-color: #eef8f0;
  border: 1px solid #28a745;
  box-shadow: 0px 0px 2px 3px #d6eedb;
  color: #48b45f;
}
.checkout-detail-tile.success .checkout-detail-tile-info {
  color: #0c4f16;
}


/* Shop Page Style */
.navigation-link a {
  text-decoration: none;
}
.navigation-link {
  margin-bottom: 50px;
  padding: 0 20px;
}
.navigation-link p {
  color: #e81212;
  font-size: 18px;
  display: flex;
  align-items: center;
}
.navigation-link p span{
  font-size: 24px;
  color: #8e8e8e;
  margin-right: 15px;
}
.products-section {
  padding: 30px 0;
}
.product-section-title {
  text-align: center;
  margin-bottom: 30px;
}
.product-list-wrapper {
  padding: 0 15px;
}
.product-list-wrapper ul {
  padding: 0 !important;
}
.product-item {
  margin-bottom: 40px;
}
.product-item img {
  width: 100%;
  height:250px;
}
.justifytext{
  text-align: justify;
}
.product-item .product-title {
  background-color: #13172a;
  color: #fff;
  padding: 10px 20px;
}
.product-item .title {
  font-size: 1.2rem;
}
.product-item .price {
  font-size: 0.8rem;
  margin-bottom: 0;
}
.product-description {
  background-color: #ededed;
  padding: 10px 15px;
}
.product-description a i {
  margin-left: 10px;
}


/* Single Product Page Style */
.single-product-title h1 {
  margin-bottom: 25px;
}
.single-product-section .single-product-img .single-product-display-image-container {
  margin-bottom: 15px;
  position: relative;
  height: 350px;
}
.single-product-section .single-product-img .single-product-display-image-container .zoom-image {
  position: absolute;
  right: 20px;
  top: 15px;
  color: #444;
  font-size: 20px;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-content: center;
  padding: 8px;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 2px 6px -3px #00000091;
}
.single-product-section .single-product-images .single-product-display-image-container img {
  height: 300px;
  width: 100%;
  object-fit: contain;
  margin: auto;
  display: flex;
}
.single-product-gallery-container {
  padding: 10px 0;
  margin-bottom: 20px;
}
.single-product-gallery-container .gallery-thumb-list {
  padding: 0;
  display: flex;
  margin: 0 auto;
  justify-content: center;
  flex-wrap: wrap;
}
.single-product-gallery-container .gallery-thumb:not(:last-child) {
  margin-right: 15px;
  margin-bottom: 10px;
}
.single-product-gallery-container .gallery-thumb img {
  width: 80px;
  height: 80px;
  object-fit: cover;
}
.single-product-item-list-container {
  text-align: center;
}
.single-product-item-list-container .single-product-list {
  margin-bottom: 30px;
  text-align: left;
  margin: 0 auto;
  max-width: 400px;
  padding: 0;
}
.single-product-item-list-container .single-product-list .single-product-item {
  padding: 15px;
  display: flex;
  background-color: #ededed;
  margin-bottom: 20px;
}
.single-product-item .item-price-section {
  flex: 1;
}
.single-product-item .item-price-section p {
  margin-bottom: 0;
}
.single-product-item .item-price-section .item-price {
  color: #cf0a0a;
  font-size: 22px;
}
.single-product-item .item-price-section .item-title {
  font-size: 14px;
}
.single-product-item .item-qty-section {
  margin: auto;
}
.single-product-item .item-qty-section input {
  max-width: 50px;
}
.single-product-description {
  background-color: #1f2443;
  color: #fff;
  padding: 30px 0;
  margin-bottom: 30px;
}
.single-product-description p {
  margin: 0;
}
.single-product-review-section {
  padding: 20px 0;
  text-align: center;
  margin-bottom: 30px;
}
.single-product-review-section .review-description {
  margin-bottom: 2rem;
  color: #9f9f9f;
}
.single-product-review-section .single-product-review-summery {
  background-color: #ededed;
  padding: 15px;
}
.single-product-review-summery .review-section {
  text-align: left;
}
.single-product-review-summery .review-section p:first-child {
  margin-bottom: 0.5rem;
}
.single-product-review-summery .review-section p:last-child {
  margin-bottom: 0;
}
.single-product-review-summery .avg-rating {
  border-right: 3px solid #d5d5d5;
}
.single-product-review-summery .total-reviews {
  padding-left: 30px;
}
.single-product-review-summery .total-reviews .total-count {
  font-size: 22px;
}
.avg-rating .avg-stars .checked {
  color: gold;
}

/* Order Successful Page Style */
.order-success-main {
  background-image: url(../img/order-success-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #22327d;
}
.order-success-detail-wrapper, .order-success-address-wrapper {
  margin-bottom: 50px;
  max-width: 80%;
  background-color: #eaeff3c9;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  border-radius: 9px;
  padding: 15px 30px;
  box-shadow: 0 0 14px 6px #d3d5dcbd;
}
.order-wrapper {
  max-width: 100% !important;
}
.order-success-detail-wrapper .order-success-details-list {
  padding: 0;
}
.order-success-detail-wrapper .order-success-details-block .order-success-icon {
  font-size: 6rem;
  margin: 15px auto 30px;
}
.order-success-detail-wrapper .order-success-details-block .order-failed-icon {
  color: #e24a4a;
}
.order-success-details-wrapper .order-success-details-list .order-success-detail-item {
  display: flex;
  justify-content: space-between;
}
.order-success-details-list .order-success-detail-item .detail-item-key, .order-success-details-list .order-success-detail-item .detail-item-value {
  margin-bottom: 5px;
}
.order-success-details-list .order-success-detail-item .detail-item-value {
  color: #13172a;
}
.order-success-address-wrapper .order-success-address p {
  margin-bottom: 0;
  font-size: 0.9rem;
}



/* Image Gallery View Style */
.gallery-view {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  background: #000000a8;
}
.gallery-view .close-gallery {
  top: 20px;
  right: 40px;
  position: absolute;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}
.gallery-view .gallery-preview-image {
  padding: 100px;
  z-index: 100;
}
.gallery-view .gallery-preview-image img {
  max-width: 100%;
  margin: auto 0;
}
.gallery-view .gallery-overley {
  position: absolute;
  height: 100vh;
  width: 100vw;
  top: 0;
  left: 0;
}

/* Home Page Style */
.home-intro-section-wrapper {
  height: 200vh;
}
.home-intro-section {
  background-color: #13172a;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
  padding-top: 100px;
  margin-top: -100px;
  padding-bottom: 150px;
  transition: all ease-in-out 600ms;
}
.home-intro-section .intro-info {
  max-width: 500px;
  margin-left: 10px;
  transition: all ease-in-out 600ms;
}
.home-intro-section .intro-title {
  margin-bottom: 25px;
}
.home-intro-section .intro-center-title {
  text-decoration: underline;
  margin-bottom: 25px;
  color: #4cc8f5!important;
}
.intro-img {
  position: relative;
  width: 100%;
}
.intro-img .intro-image-container {
  position: absolute;
  width: 40%;
  right: 0;
  top: -220px;
  transition: all ease-in-out 600ms;
}
.intro-img .intro-image-container .intro-wrapper {
  position: relative;
}
.intro-img .intro-image-container .intro-wrapper .intro-video-wrapper {
  position: absolute;
  top: 30px;
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: flex-start;
}
.intro-img .intro-image-container .intro-wrapper .intro-video-wrapper video {
  width: 75%;
}
.intro-img.zoom .intro-image-container {
  width: 55%;
  transform: translateX(-35%) translateY(-60px);
}
.about-section {
  padding: 50px 0;
}
.about-section .about-content {
  padding: 0 20px;
}
.about-section .about-bg {
  padding: 0 20px;
  background: linear-gradient(to top right, #d8dbea, #eaebed, #fff)
}
.about-section .about-section-block {
  padding: 20px;
  text-align: center;
}
.about-section .about-section-block .about-image {
  width: 100%;
  max-width: 300px;
  margin-bottom: 25px;
  border-radius: 10px;
}
.about-section .about-section-block .about-title {
  margin-bottom: 15px;
}
.about-section .about-section-image .about-text {
  font-size: 1.1rem;
  text-align: justify;
  padding: 0 15px;
}
.about-section .btnfoundermore {
  margin-top: -2%;
}
.why-rsd-section {
  background-color: #1f2443;
  padding: 40px 0;
  color: #fff;
}
.why-rsd-section .why-rsd-content {
  display: flex;
}
.why-rsd-section .why-rsd-content .why-rsd-section-left, .why-rsd-section .why-rsd-content .why-rsd-section-right {
  margin: auto;
}
.why-rsd-section .why-rsd-content .why-rsd-section-right img {
	border-radius: 10px;
}
.why-rsd-section .why-rsd-content .why-rsd-section-left .why-rsd-title {
  margin-bottom: 30px;
}
.why-rsd-section .why-rsd-content .why-rsd-section-left .why-rsd-text {
  text-align: justify;
  font-size: 1rem;
}
.why-rsd-section .why-rsd-content .why-rsd-section-left .why-rsd-title span {
  color: #27a9ea;
}
.archive-section {
  padding: 80px 0;
  background-color: #000000db;
  background-image: url(../img/archive_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left center;
  background-blend-mode: hue;
}
.archive-section .achive-section-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  height: 320px;
  transition: all ease-in-out 200ms;
}
.archive-section .achive-section-wrapper .archive-first span {
  transform: translateX(100px);
}
.archive-section .achive-section-wrapper .archive-first span, .archive-section .achive-section-wrapper .archive-last span {
  opacity: 0;
  line-height: 4rem;
  font-size: 2rem;
  color: #62b6db;
  letter-spacing: 2px;
  font-weight: bold;
}
.archive-section .achive-section-wrapper .archive-last {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.archive-section .achive-section-wrapper .archive-list {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
}
.archive-section .achive-section-wrapper .archive-list .archive-list-item {
  opacity: 0;
  font-size: 2rem;
  color: #d7d9e2;
  font-weight: bolder;
  letter-spacing: 5px;
  line-height: 4rem;
}
.testimonial-section {
  padding: 50px 0;
  background-color: #293252;
  color: #fff;
  text-align: center;
  height: 650px;
  display: flex;
  align-items: center;
}
.testimonial-section .testimonial-section-wrapper {
  max-width: 1100px;
  height: 100%;
}
.testimonial-section .testimonial-section-wrapper .carousel {
  height: 100%;
}
.testimonial-section .testimonial-section-wrapper .testimonial-block {
  width: 80%;
  margin: auto;
}
.testimonial-section .testimonial-section-wrapper .testimonial-block .testimonial-user-image {
  max-width: 200px;
  margin: auto;
  margin-bottom: 30px;
}
.testimonial-section .testimonial-section-wrapper .testimonial-block .testimonial-user-image img {
  border-radius: 50%;
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.testimonial-section .testimonial-section-wrapper .testimonial-block .country-flag img {
  max-width: 50px;
  border-radius: 5px;
  margin-left: 15px;
}
.testimonial-section .testimonial-section-wrapper .testimonial-block .testimonial-text  {
  font-size: 14px;
}
.testimonial-section .testimonial-section-wrapper .testimonial-pagination-bullets {
  position: relative;
  margin-top: 30px;
}
.testimonial-section .testimonial-section-wrapper .testimonial-pagination-bullets .testimonial-bullet a {
  margin-right: 10px;
  color: #cccccc21;
}
.testimonial-section .testimonial-section-wrapper .testimonial-pagination-bullets .testimonial-bullet.active a {
  margin-right: 10px;
  color: #cccccca1;
}
.message-section {
  padding-top: 30px;
}
.statestic-section {
  padding: 50px 0;
  background-color: #f1f1f1;
  text-align: center;
}
.statestic-section .statestic-block .statestic-icon {
  font-size: 70px;
  border: 4px solid #4c4c4c;
  border-radius: 50%;
  color: #4c4c4c;
  margin-bottom: 20px;
  width: 128px;
  height: 128px;
  margin: 0 auto 25px;
  display: flex;
}
.statestic-section .statestic-block .statestic-icon i {
  margin: auto;
}
.statestic-section .statestic-block .statestic-icon img {
  padding: 25px;
}
.statestic-section .statestic-block .statestic-count-block {
  display: flex;
  justify-content: center;
  align-items: center;
}
.statestic-section .statestic-block .statestic-count-block .statestic-count {
  font-size: 2.5rem;
  margin-bottom: 0;
  margin-right: 8px;
  line-height: 2.5rem;
  color: #3c3c3c;
}
.statestic-section .statestic-block .statestic-count-block span {
  font-size: 2rem;
  color: #4c4c4c;
}
.statestic-section .statestic-block .statestic-text {
  font-size: 1.3rem;
  color: #767c7f;
}

/* About Us Page Style */
.section-header {
  text-align: center;
  margin-bottom: 25px;
}
.section-header h4 {
  font-weight: 600;
  font-size: 1.2rem;
}
.section-header hr {
  width: 60px;
  margin: 15px auto 20px;
  height: 0.1rem;
  color: #1a4cb9;
  opacity: 0.8;
}
.section-header h1 {
  font-weight: bold;
}
.section-header h1 span {
  color: #1a4cb9;
}
.challenge-section .challenge-section-wrapper .challenge-item span {
  font-weight: 500;
  font-size: 1.25rem;
}
.company-info-section {
  background-color: #e6e6e659;
}
.company-info-section .company-info-section-wrapper .company-info-block {
  height: 100%;
}
.company-info-section .company-info-section-wrapper .company-info-block img {
  border-radius: 10px;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.values-section .values-block {
  margin: 0 20px;
  padding: 0 30px 10px;
  color: #1f2443;
  text-align: center;
}
.values-section .values-block .values-image-icon-block {
  text-align: center;
}
.values-section .values-block .values-image-icon-block .values-image:hover {
  transform: scale(1.05);
  box-shadow: 12px 7px 22px -1px #0000005e;
}
.values-section .values-block .values-image-icon-block .values-image {
  max-width: 250px;
  border-radius: 50%;
  max-height: 250px;
  object-fit: cover;
  height: 250px;
  width: 250px;
  object-position: top;
  box-shadow: 2px 3px 18px 2px #0000005e;
  transition: all ease 300ms;
}
.about-section .values-icon {
  max-width: 50px;
  margin: auto;
  border-radius: 50%;
  overflow: hidden;
  transform: translateY(-50%);
  color: #dcdcdc;
  background: #13172a;
  height: 50px;
  justify-content: center;
  align-items: center;
  display: flex;
  font-size: 1.5rem;
  box-shadow: 0 0 9px 4px #989898d1;
  transition: all ease-in-out 200ms;
  cursor: pointer;
  margin-top: -25px;
}
.values-section .values-block .doctor-info-modal p {
  text-align: left;
}
.values-section .values-block .values-image-icon-block .values-icon:hover {
  transform: translateY(-25px) scale(1.1);
  box-shadow: 0 0 15px 5px #989898ad;
}
.values-section .values-block .values-image-icon-block .values-icon img {
  width: 100%;
  background-color: #1a4cb9;
  padding: 17px;
}
.values-section .values-block .values-text {
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 0;
  text-align: justify;
}
.about-statestic-section {
  background-color: #444b65;
  color: #fff;
  padding-bottom: 0;
  margin: 30px 0;
}
.about-statestic-section .about-statestic-block-left {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.about-statestic-section .about-statestic-block {
  text-align: center;
}
.about-statestic-section .about-statestic-block img {
  border-radius: 10px;
}
.about-statestic-section .about-statestic-block .about-statestic-detail-block {
  margin-bottom: 30px;
  max-width: 75%;
  margin: 0 auto 25px;
}
.about-statestic-section .about-statestic-block .about-statestic-detail-block h3 {
  font-weight: bold;
}
.about-statestic-section .about-statestic-block .about-statestic-detail-block h4 {
  font-size: 1.1rem;
  font-weight: 500;
}
.about-statestic-section .about-statestic-block .about-statestic-detail-block p {
  margin-bottom: 0;
  font-size: 14px;
}
.directors-section {
  padding-bottom: 40px;
}
.directors-section .directors-block {
  margin: auto;
}
.directors-section .directors-block .directors-image-icon-block .directors-image {
  max-width: 200px;
  border-radius: 50%;
  border: 2px solid #1f2443;
}
.directors-section .directors-block .directors-image-icon-block .directors-icon {
  max-width: 75px;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  transform: translateY(-50%);
}
.directors-section .directors-block .directors-image-icon-block .directors-icon img {
  width: 100%;
  background-color: #1a4cb9;
  padding: 17px;
}
.directors-section .directors-block .directors-details-block {
  max-width: 70%;
  margin: auto;
}
.directors-section .directors-block .directors-details-block .directors-designation {
  font-weight: bold;
}
.directors-section .directors-block .directors-details-block hr {
  width: 60px;
  margin: 0 auto 1rem;
  height: 0.2rem;
  color: #1a4cb9;
  opacity: 0.8;
}
.directors-section .directors-block .directors-details-block .directors-title {
  font-weight: bold;
}
.directors-section .directors-block .directors-details-block .directors-text {
  font-size: 14px;
  max-width: 70%;
  margin: 0 auto 20px;
}
.join-section {
  background-color: #1f2443;
  color: #fff;
}
.join-section .join-section-wrapper {
  padding: 0 30px;
}
.join-section .join-section-wrapper .join-block-right {
  flex-direction: row-reverse;
  display: flex;
  align-items: center;
  height: 100%;
}
.message-section {
  padding: 50 0 0;
}
.message-section .d-flex {
  align-items: center;
}
.message-section .message-logo {
  max-width: 200px;
  margin-bottom: 25px;
}
.message-section .message-pcimage {
  margin-bottom: 25px;
}
.message-section .message-rating {
  margin: 10px 0;
}
.message-section .message-rating .message-rating-star a {
  color: #ccc;
}
.message-section .message-rating .message-rating-star.active a {
  color: gold;
}
.message-section .message-contact-block-wrapper {
  margin-bottom: 20px;
}
.message-section .message-contact-block-wrapper .message-contact-block {
  display: flex;
  margin-bottom: 10px;
}
.message-section .message-contact-block-wrapper .message-contact-block .message-icon {
  margin-right: 20px;
  display: flex;
  align-items: center;
  color: #1a4cb9;
  font-size: 22px;
}
.message-section .message-contact-block-wrapper .message-contact-block p {
  margin-bottom: 0;
  font-weight: bold;
  font-size: 18px;
}
.message-section .message-contact-block-wrapper {
  margin-bottom: 20px;
}
.mission-vision-section {
  background-image: url("../img/cart-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.mission-vision-content .circle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.mission-vision-content .circle-wrapper .left-circle {
  width: 250px;
  height: 250px;
  background: #f1f2f4;
  justify-content: center;
  align-items: center;
  display: flex;
  color: #bdbec0;
  border-radius: 50%;
  font-size: 100px;
  box-shadow: 0px 6px 18px 0px #a2a2a2;
  cursor: pointer;
  transition: all ease-in-out 300ms;
}
.mission-vision-content .circle-wrapper .left-circle:hover {
  transform: scale(1.2);
}
.mission-vision-content .circle-wrapper .left-circle a {
  color: #13172a;
  text-decoration: none;
}
.mission-vision-content .circle-wrapper .left-circle a span {
  color: #284cb9;
}
.mission-vision-content .mission-vision-block-wrapper .mission-vision-block {
  display: flex;
  padding: 10px 0;
}
.mission-vision-content .mission-vision-block-wrapper .mission-vision-block .mission-vision-circle {
  border: 2px dotted;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  transition: all ease-in-out 300ms;
}
.mission-vision-content .mission-vision-block-wrapper .mission-vision-block .mission-vision-circle:hover {
  transform: scale(1.1);
}
.mission-vision-content .mission-vision-block-wrapper .mission-vision-block .mission-vision-circle-content {
  width: 130px;
  height: 130px;
  background: #f1f2f4;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  border-radius: 50%;
  font-size: 30px;
  border: 8px solid;
}
.mission-block .mission-vision-circle {
  color: #5390c9;
}
.vision-block .mission-vision-circle {
  color: #3ac2dc;
}
.values-block .mission-vision-circle {
  color: #3780f1;
}
.vision-block {
  padding-left: 80px !important;
}
.mission-vision-content .mission-vision-block-wrapper .mission-vision-block .mission-vision-circle-content h4 {
  margin-top: 10px;
  font-size: 1.1rem;
}
.mission-vision-content .mission-vision-block-wrapper .mission-vision-block .mission-vision-text {
  padding-left: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 60%;
}
.mission-vision-content .mission-vision-block-wrapper .mission-vision-block .mission-vision-text p {
  margin-bottom: 0;
}


/* Founders MEssage Page Style */
.founder-message-block {
  text-align: center;
}
.founder-message-block .founder-message-image {
  margin: auto;
  width: 80%;
  max-width: 300px;
  margin-bottom: 20px;
}
.founder-message-block .founder-message-image img {
  border-radius: 50%;
}
.founder-message-block .founder-message-message-title {
  margin-bottom: 30px;
}
.founder-message-block .founder-message-message-text {
  width: 80%;
  margin: auto;
  max-width: 350px;
}
.founder-message-block .founder-message-signature {
  margin: 40px auto;
  max-width: 250px;
}


/* Login/Register Page Style */
.login-page, .register-page {
  overflow: hidden;
  padding-top: 0 !important;
}
.login-page .btn, .register-page .btn {
  border-radius: 0.3rem;
}
.login-form-container, .register-form-container {
  max-width: 500px;
  margin-bottom: 30px;
}
.login-form-container .logo {
  max-width: 250px;
  margin: 0 auto 25px;
}
.login-form-container .login-form, .register-form-container .register-form {
  margin-top: 25px;
}
.social-login-block {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.social-login-block a:not(:last-child) {
  margin-right: 15px;
}
.social-login-block img {
  max-width: 50px;
}
.circle-bg {
  background-color: #1f2443;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  height: 500px;
  width: 500px;
  margin: auto;
  padding: 50px;
  transform: translateX(50px);
  transition: all ease-in-out 300ms;
}
.login-right-block .login-button-block, .register-right-block .register-button-block{
  display: flex;
  justify-content: space-evenly;
}
.login-right-block .login-text h4, .register-right-block .register-text h4 {
  font-size: 1.2rem;
  font-weight: 400;
  transition: all ease-in-out 300ms;
}
.login-right-block .login-text p, .register-right-block .register-text p {
  font-size: 0.9rem;
  transition: all ease-in-out 300ms;
}
.login-right-block .login-text, .register-right-block .register-text {
  width: 80%;
  margin: 30px auto 0;
}
.register-form-container .register-form .privacy-block {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.register-form-container .register-form .privacy-block img {
  max-width: 70px;
}
.register-form-container .register-form .form-check-label {
  display: contents;
}
.register-form-container .register-form .btn {
  margin-bottom: 15px;
}
.register-right-block .circle-wrapper .logo {
  width: 250px;
  margin: auto;
}

/* My Details Page Style */
.breadcrumb-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.breadcrumb-wrapper a {
  text-decoration: none;
  color: #f58560;
  font-weight: bold;
}
.my-details-wrapper {
  max-width: 75%;
  margin: auto;
}
.my-details-wrapper .my-detail-description {
  color: #aeaeae;
}
.my-details-wrapper .my-details .my-detail-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 35px;
  border: 1px solid #aeaeae;
}
.my-details-wrapper .my-details .my-detail-block:not(:last-child) {
  border-bottom: none;
}
.my-details-wrapper .my-details .my-detail-block .my-detail p {
  color: #797979;
  margin-bottom: 0;
}
.my-details-wrapper .my-details .my-detail-block .btn {
  padding: 0.375rem 2rem;
}

.my-account-nav-wrapper {
  background-color: #ededed;
  padding: 30px 10px;
}
.my-account-nav-wrapper .my-account-nav-items {
  list-style: none;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  padding: 0;
}
.my-account-nav-wrapper .my-account-nav-items .my-account-nav-item:not(:first-child):before {
  content: "|";
  margin: 0 25px;
}
.my-account-nav-wrapper .my-account-nav-items .my-account-nav-item a {
  text-decoration: none;
  color: #000;
  font-weight: 400;
}
.my-account-nav-wrapper .my-account-nav-items .my-account-nav-item.active a {
  color: #59b0d7;
}
.my-account-section {
  padding-top: 50px;
}
.my-account-section .my-account-block-wrapper {
  height: 100%;
  padding: 15px;
}
.my-account-section .my-account-block-wrapper a {
  text-decoration: none;
  color: #fff;
}
.my-account-section .my-account-block-wrapper .my-account-block {
  background-color: #5bb1d8;
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 5px;
  transition: all ease-in-out 300ms;
}
.my-account-section .my-account-block-wrapper .my-account-block:hover {
  transform: scale(1.02) translateY(-10px);
  border-radius: 2px;
  box-shadow: 0px 6px 12px 2px #13172a96;
}
.my-account-section .my-account-block-wrapper .my-account-block hr {
  width: 60px;
  margin: 15px auto;
}
.my-account-section .my-account-block-wrapper .my-account-block .icon {
  font-size: 4rem;
}
.my-account-section .my-account-block-wrapper .my-account-block .block-text{
  color: #ffffff8c;
}
.my-courses-wrapper .my-courses-table .course-name, .my-orders-wrapper .my-orders-table .order-name, .my-tickets-wrapper .my-tickets-table .ticket-name {
  //display: flex;
  //align-items: center;
}
.my-courses-wrapper .my-courses-table .course-name img, .my-orders-wrapper .my-orders-table .order-name img, .my-tickets-wrapper .my-tickets-table .ticket-name img {
  max-width: 70px;
  margin-right: 10px;
  border-radius: 5px;
}
.my-courses-wrapper .my-courses-table .course-name p, .my-orders-wrapper .my-orders-table .order-name p, .my-tickets-wrapper .my-tickets-table .ticket-name p {
  margin-bottom: 0;
}
.my-tickets-wrapper .my-tickets-table .ticket-name p span {
  color: #7b7b7b;
  font-size: 0.85rem;
}

.order-detail-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1rem;
}
.order-detail-item .order-item-image {
  max-width: 80px;
  margin-right: 10px;
}
.order-detail-item .order-item-image img{
  border-radius: 8px;
}
.order-detail-item .order-item-name {
  flex: 1
}
.order-detail-item .order-item-name p{
  margin: 0;
  line-height: 1rem;
}
.order-detail-item .order-item-name span{
  font-size: 12px;
  color: #6b77ad;
}



/* BLog List Page Style */
.blog {
  position: relative;
}
.blog .blog-image-wrapper {
  overflow: hidden;
  border-radius: 15px;
  position: relative;
  margin-bottom: 25px;
  height: 350px;
}
.blog .blog-image-wrapper img {
  border-radius: 15px;
  transition: all ease-in-out 300ms;
  object-fit: cover;
    height: 100%;
}
.blog .blog-image-wrapper:hover img {
  transform: scale(1.05);
  cursor: pointer;
}
.blog .blog-image-wrapper .blog-read-tag {
  background-color: #262d52;
  color: #fff;
  padding: 3px 10px;
  border-radius: 8px;
  position: absolute;
  box-shadow: 0 3px 11px 1px #000000ad;
  right: 20px;
  top: 20px;
}
.blog .blog-content-wrapper {
  border: 1px solid #a9a9a99e;
  border-radius: 15px;
  padding: 15px 35px;
  background-color: #fff;
  max-width: 90%;
  margin-left: 5%;
  transform: translateY(-100px);
  box-shadow: -1px -3px 16px 4px #00000059;
  transition: all ease-in-out 200ms;
}
.blog .blog-content-wrapper:hover {
  box-shadow: -1px 6px 20px 15px #00000047;
}
.blog .blog-content-wrapper .blog-author {
  margin-bottom: 0.5rem;
  font-weight: bold;
  font-size: 14px;
  color: #696969;
}
.blog .blog-content-wrapper .blog-author .blog-date {
  color: #949493fa;
}
.blog .blog-content-wrapper .blog-title {
  color: darkslateblue;
  font-weight: 500;
}
.blog .blog-content-wrapper .blog-short-content {
  font-size: 14px;
  color: gray;
}
.nav-search-form {
  display: flex;
}
.nav-search-form .form-control {
  border-radius: 10px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.nav-search-form .btn {
  border-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.blog-section .blog-section-wrapper {
  //border: 1px solid #c7c7c7;
  padding: 20px 30px;
  border-radius: 15px;
  width: 80%;
  //background-color: #e8e8e86b;
  //box-shadow: 0 2px 7px 2px #c5c5c5;
  transition: all ease-in-out 300ms;
}
.blog .blog-title-wrapper .blog-title {
  color: #c74c4c;
}
.blog .blog-title-wrapper .blog-author {
  font-size: 0.8rem;
  color: #8a8a8a;
  font-weight: 500;
}
.blog .blog-text-wrapper .blog-author {
  text-align: right;
  margin-top: 2rem;
  color: #0e79af;
}
.blog .blog-footer-wrapper {
  display: flex;
  justify-content: space-between;
}
.blog .blog-footer-wrapper .blog-link-block {
  width: 30%;
}
.blog .blog-footer-wrapper .blog-link-block a {
  text-decoration: none;
  color: #2d4767;
}
.blog .blog-footer-wrapper .blog-link-block .previous-blog, .blog .blog-footer-wrapper .blog-link-block .next-blog {
 margin-bottom: 5px;
 font-size: 0.95rem;
 line-height: 1rem;
}
.blog .blog-footer-wrapper .blog-link-block .previous-blog-title, .blog .blog-footer-wrapper .blog-link-block .next-blog-title {
 font-size: 0.8rem;
}
.blog .blog-footer-wrapper .blog-next-link-block {
  text-align: right;
}

/* Case Study Pages Style */
.case-study-list-header-section .case-study-list-header-section-wrapper {
  padding: 10px 15px;
  transition: all ease-in-out 300ms;
}
.case-study-list-header-section .case-study-list-navbar-wrapper .nav-item {
  background-color: #13172a;
  margin: 5px;
  border-radius: 6px;
  transition: all ease-in-out 200ms;
}
.case-study-list-header-section .case-study-list-navbar-wrapper .nav-item:hover {
  transform: scale(1.03) translateY(-3px);
}
.case-study-list-header-section .case-study-list-navbar-wrapper .nav-item .nav-link {
  color: #fff;
  font-size: 1rem;
}
.case-study-list-section .case-study-list-section-wrapper {
  -webkit-column-count: 3;
  -moz-column-count:3;
  column-count: 3;
  -webkit-column-gap: 1em;
  -moz-column-gap: 1em;
  column-gap: 1em;
  -moz-column-gap: 1.5em;
  -webkit-column-gap: 1.5em;
  column-gap: 1.5em;
  font-size: .85em;
}
.case-study-list-section .case-study-list-section-wrapper .case-study {
  display: inline-block;
  background: #fff;
  padding: 1em;
  margin: 0 0 1.5em;
  width: 100%;
-webkit-transition:1s ease all;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-shadow: 0px 2px 5px 2px #ccc;
}
.case-study .case-study-image-wrapper {
  overflow: hidden;
}
.case-study .case-study-image-wrapper img {
  max-height: 500px;
  object-fit: cover;
  transition : all ease-in-out 200ms;
}
.case-study .case-study-image-wrapper:hover img {
  cursor: pointer;
  transform: scale(1.1);
}
.case-study-list-section .case-study-list-section-wrapper .case-study .case-study-content-wrapper {
  margin-top: 10px;
}
.case-study-list-section .case-study-list-section-wrapper .case-study .case-study-content-wrapper .case-study-title {
  font-size: 1.1rem;
  font-weight: 500;
}
.case-study-list-section .case-study-list-section-wrapper .case-study .case-study-content-wrapper .case-study-short-content {
  font-size: 0.8rem;
}
.case-study-main-container {
  display: flex;
}
.case-study-main-container .sidebar {
  flex: 0 0 25%;
  width: 25%;
  order: 2;
  transition: all ease-in-out 200ms;
}
.case-study-main-container .page-content {
  flex: 0 0 75%;
  width: 75%;
  order: 1;
}
.case-study-main-container .mobile-searchbar {
  display: none;
}
.case-study-main-container .desktop-searchbar {
  display: block;
}
.case-study-filter-button-wrapper {
  text-align: right;
  padding-right: 15px;
  font-size: 1.2rem;
  padding-bottom: 3px;
  display: none;
}
.case-study-filter-close-button-wrapper {
  padding-top: 30px;
}
.case-study-filter-button-wrapper i {
  transform: rotate(90deg);
}
.overley {
  display: none;
}

/* Create Patient Page Style */
.create-patient-details-wrapper {
  border: 1px solid #e6e6e6;
  border-radius: 10px;
}
.nav-tabs .nav-link {
  padding: 10px 35px;
}
.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  border-radius: 0 !important;
  border-top: none !important;
  color: #0e79b0;
}
.nav-tabs .nav-link i {
  font-size: 1.5rem;
}
.create-patient-details-wrapper .tab-content {
  padding: 25px 35px;
}
.create-patient-details-wrapper .create-patient-block .patiente-block {
  max-width: 450px;
  margin: 30px auto;
  border: 1px solid #bdbdbd;
  border-radius: 5px;
}
.create-patient-details-wrapper .create-patient-block .create-btn-continue, .create-patient-details-wrapper .upload-patient-block .create-btn-continue {
  display: flex;
  align-items: center;
  margin: auto;
  padding: 0.375rem 1.5rem;
}
.create-patient-details-wrapper .create-patient-block .patiente-block .block-title {
  background: #efefef;
  padding: 10px 20px;
  border-bottom: 1px solid #bdbdbd;
}
.create-patient-details-wrapper .create-patient-block .patiente-block .block-content {
  padding: 10px 20px 20px;
}
.create-patient-details-wrapper .upload-patient-block .upload-details-block {
  max-width: 450px;
  margin: 30px auto;
}
.create-patient-details-wrapper .upload-patient-block .profile-block {
  margin: 20px 0;
}
.create-patient-details-wrapper .upload-patient-block .profile-block .patient-profile-block .profile-image {
  max-height: 100px;
  width: auto !important;
  margin: 0 auto 15px;
  display: flex;
}
.create-patient-details-wrapper .upload-patient-block .profile-block .patient-profile-block {
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  padding: 10px;
  margin: 15px 0;
}

/* Courses Page Style */
.courses-lise-section .course-list-wrapper {
  max-width: 95%;
  margin: auto;
}
.course-list-wrapper .course-block-wrapper {
  margin: 15px 0;
}
.course-list-wrapper .course-block-wrapper .course-image-block {
  background-image: linear-gradient(to bottom, #1a659a, #91cbe8);
  color: #fff;
}
.course-list-wrapper .course-block-wrapper .course-image-block hr, .single-course .course-image-section .course-image-wrapper hr {
  opacity: 0.8;
  height: 3px;
  width: 60px;
  margin: 10px auto;
  border-radius: 5px;
}
.course-list-wrapper .course-block-wrapper .course-status-block {
  background-color: #13172a;
  color: #fff;
}
.course-list-wrapper .course-block-wrapper .course-details-block {
  background-color: #efefef;
  padding-left: 2rem !important;
}
.course-list-wrapper .course-block-wrapper .course-block {
  padding: 1rem 0.5rem;
}
.course-list-wrapper .course-block-wrapper .course-image-block .course-tag {
  display: flex;
  justify-content: flex-end;
}
.course-list-wrapper .course-block-wrapper .course-image-block .course-tag p {
  border: 1px solid #ffffff94;
  padding: 0 6px;
  font-size: 0.8rem;
}
.course-list-wrapper .course-block-wrapper .course-image-block .course-tag p:first-child {
  border-right: none;
  background-color: #d23e3e;
}
.single-course {
  padding: 15px;
}
.single-course .schedule-day-slot-block .schedule-slot-details .schedule-slot-list {
  list-style: circle;
}
.single-course .course-image-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
}
.single-course .course-image-section .course-image-wrapper {
  display: flex;
  flex-direction: column;
}
.single-course .course-image-section .course-image-wrapper .course-image-thumb-block {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
.single-course .course-image-section .course-image-wrapper .course-image-thumb-block img {
  max-width: 100px;
  margin-right: 10px;
  margin-bottom: 10px;
}
.single-course .course-details-section .course-details-wrapper span {
  color: #3c4474;
}
.single-course .course-details-section .course-details-wrapper .cource-points, .single-course .course-speaker-section .course-speaker-wrapper .speaker-wrapper {
  background-color: #f0f1f9b3;
  padding: 10px 20px;
  font-weight: 500;
}
.single-course .course-details-section .course-details-wrapper .cource-points ul {
  list-style: circle;
}
.single-course .course-schedule-section .course-schedule-wrapper .schedule-day-wrapper {
  background: #f4f5fbb3;
  margin-bottom: 22px;
  padding: 10px;
  border-radius: 10px;
}
.single-course .course-schedule-section .course-schedule-wrapper .schedule-day-wrapper .schedule-day-block .schedule-day-slot-block {
  margin-bottom: 30px;
}
.single-course .course-speaker-section .course-speaker-wrapper .speaker-wrapper, .single-course .course-speaker-section .course-speaker-wrapper .speaker-wrapper .speaker-image{
    border-radius: 6px;
}

/* Event Pages Style */
.event .section {
  padding: 50px 0;
}
.event .event-list-ul-list {
  list-style: circle;
}
.event .event-list-ul-list li {
  margin-bottom: 0.5rem;
}
.event .event-list-intro-section {
  background-image: url(../img/event-header-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: overlay;
}
.event .event-list-details-section .event-list-details-section-wrapper .event-list-detail-block .row {
  align-items: center;
}
.event .event-list-details-section .event-list-details-section-wrapper .event-list-detail-block .event-detail-image img {
  border-radius: 5px;
}
.event .event-list-details-section .event-list-details-section-wrapper {
  max-width: 1200px;
}
.event .event-list-future-section {
  background-image: url(../img/event-banner-bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-blend-mode: overlay;
  background-color: #171212;
  color: #fff;
}
.event .event-list-who-section {
  background-color: #1f3156;
  color: #fff;
}
.event .event-list-who-section .event-list-who-section-wrapper .event-list-future-title h1, .event .event-list-app-section .event-list-app-section-wrapper .event-list-app-title h1 {
  text-align: left;
}
.event .event-list-program-section .event-list-program-section-wrapper .event-list-program-content {
  background-color: #f3f3f3d4;
  padding: 30px 10px;
}
.event .event-list-app-section {
  background-color: #13172a;
  color: #fff;
}
.event-gallery-image {
    margin-bottom: 10px;
    border-radius: 6px;
}

/* Clinic Lab Page Style */
.clinin-lab-intro-section {
  background-image: url(../img/brochure_header_bg.jpg);
  clip-path: none;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  color: #fff;
  background-blend-mode: soft-light;
  background-color: #232323;
  min-height: 400px;
  justify-content: center;
  align-items: center;
  display: flex;
}
.clinin-lab-intro-section .clinic-lab-intro-wrapper .clinic-lab-intro-content .clinic-lab-intro-title-block .clinic-lab-intro-title {
  border-right: 2px solid #fff;
}
.clinin-lab-intro-section .clinic-lab-intro-wrapper .clinic-lab-intro-content .clinic-lab-intro-title-block .clinic-lab-intro-title h1 {
  line-height: 1;
}
.clinin-lab-intro-section .clinic-lab-intro-wrapper .clinic-lab-intro-content .clinic-lab-intro-title-block .clinic-lab-intro-title p {
  line-height: 1rem;
}
.clinic-lab-wrapper .clinic-lab-block {
  width: 70%;
  margin: auto;
}
.clinic-lab-wrapper .clinic-lab-block a {
  text-decoration: none;
  color: #000;
}
.clinic-lab-wrapper .clinic-lab-block .clinic-lab-image {
  margin-bottom: 25px;
  max-width: 250px;
}
.clinic-lab-wrapper .clinic-lab-block .clinic-lab-name {
  margin-bottom: 1rem;
}
.clinic-lab-wrapper .clinic-lab-block .clinic-lab-address {
  margin-bottom: 2rem;
}
.clinic-lab-south {
  background-color: #f1f1f1;
}

/* FAQ Page */
.faq-section .faq-questions-wrapper .question-block .question-card {
  border: none;
}
.faq-section .faq-questions-wrapper .question-block .question-card .collapse {
  box-shadow: rgb(0 0 0) 0px 5px 11px -8px;
}
.faq-section .faq-questions-wrapper .question-block .question-card .question-card-header {
  border-bottom: 0;
}
.faq-section .faq-questions-wrapper .question-block .question-card .question-card-header h5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-section .faq-questions-wrapper .question-block .question-card .question-card-header h5 i {
  margin-left: 10px;
  transition: all ease-in-out 200ms;
}
.faq-section .faq-questions-wrapper .question-block .question-card .question-card-header h5[aria-expanded="true"] i {
  transform: rotate(180deg) scale(1.4);
}

/* Methodology Page Style */
.methodology-intro-section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../img/methodology-intro-bg.jpg);
  background-color: #00000096;
  background-blend-mode: darken;
  padding-bottom: 0 !important;
  padding-top: 150px !important;
  clip-path: none;
}
.methodology-intro-section .methodology-intro-info {
  margin-bottom: 30px;
  padding: 0 20px;
}
.methodology-intro-section .methodology-intro-info hr {
  height: 5px;
  width: 60px;
  border-radius: 15px;
  opacity: 0.8;
}
.methodology-intro-section .intro-point-wrapper {
  clip-path: polygon(0 0, 100% 25%, 100% 100%, 0 100%);
  background: #13172a;
  color: #ccc;
  padding: 20px 9px;
}
.methodology-intro-section .intro-point-wrapper .intro-point-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  column-count: 2;
  row-gap: 5px;
}
.methodology-intro-section .intro-point-wrapper .intro-point-list .intro-point-block {
  padding: 5px 35px;
  display: flex;
  align-items: center;
  margin: 10px 0;
}
.methodology-intro-section .intro-point-wrapper .intro-point-list .intro-point-block i {
  font-size: 2.5rem;
  color: #59b6e4;
  margin-right: 15px;
}
.methodology-intro-section .intro-point-wrapper .intro-point-list .intro-point-block .intro-point {
  margin: 0;
}
.technology-section {
  background-color: #f7f7f7;
}
.technology-section .technology-section-wrapper .technology-content .technology-block-wrapper {
  background-color: #fff;
  border-radius: 6px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 10px -1px #67676747;
  position: relative;
  overflow: hidden;
  opacity: 0;
}
.technology-section .technology-section-wrapper .technology-content .technology-block-wrapper:nth-child(even) {
  transform: translateX(-100px);
}
.technology-section .technology-section-wrapper .technology-content .technology-block-wrapper:nth-child(odd) {
  transform: translateX(100px);
}
.technology-section .technology-section-wrapper .technology-content .technology-block-wrapper .technology-image-block {
  max-width: 85%;
  margin: auto;
}
.technology-section .technology-section-wrapper .technology-content .technology-block-wrapper .technology-image-block img {
  border-radius: 10px;
}
.technology-section .technology-section-wrapper .technology-content .technology-block-wrapper .technology-aim-block {
  font-style: italic;
  font-size: 1.2rem;
  font-family: 'Agile Sans SemiLight';
  color: #293988;
}
.technology-section .technology-section-wrapper .technology-content .technology-block-wrapper .technology-aim-block ul {
  list-style: circle;
}
.technology-section .technology-section-wrapper .technology-content .technology-block-wrapper i {
  position: absolute;
  font-size: 6rem;
  opacity: 0.3;
  color: #acaebbbf;
}
.technology-section .technology-section-wrapper .technology-content .technology-block-wrapper i.first {
  top: -11px;
  left: 0;
  transform: rotate(27deg);
}
.technology-section .technology-section-wrapper .technology-content .technology-block-wrapper i.last {
  bottom: 1px;
  right: 0;
  transform: rotate(22deg);
}
.aim-section {
  position: relative;
  overflow: hidden;
  background-color: #13172a;
  color: #fff;
  padding: 70px 0;
}
.aim-section i {
  position: absolute;
  font-size: 6rem;
  opacity: 0.3;
  color: #acaebbbf;
}
.aim-section i.first {
  top: -11px;
  left: 0;
  transform: rotate(27deg);
}
.aim-section i.last {
  bottom: 1px;
  right: 0;
  transform: rotate(22deg);
}
.aim-section .aim-wrapper .technology-block-wrapper .technology-aim-block {
  margin: auto;
  max-width: 85%;
  font-style: italic;
  font-size: 1.2rem;
  font-family: 'Agile Sans SemiLight';
}
.methodology-dream-section {
  background-color: #e6e6e659;
}
.methodology-dream-section .methodology-dream-section-wrapper .methodology-dream-block img {
  max-width: 150px;
  border-radius: 50%;
}
.methodology-dream-section .methodology-dream-section-wrapper .methodology-dream-img {
  background-color: #0000007a;
  background-blend-mode: darken;
  padding: 85px 10px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.methodology-dream-section .methodology-dream-section-wrapper .methodology-dream-digital {
  background-image: url('../img/methodology-digital.jpg');
}
.methodology-dream-section .methodology-dream-section-wrapper .methodology-dream-smile {
  background-image: url('../img/methodology-smile1.jpg');
}
.methodology-dream-section .methodology-dream-section-wrapper .methodology-dream-design {
  background-image: url('../img/methodology-design.jpg');
}
.methodology-dream-section .methodology-dream-section-wrapper .methodology-dream-img h3{
  text-shadow: 2px 2px 3px #000000bf;
}
.methodology-upcomming-courses-section .methodology-upcomming-courses-wrapper {
  max-width: 750px;
}

/* Team Page Style */
.message-section-wrapper hr {
  height: 3px;
  width: 45%;
  margin: 0 auto 30px;
  background: #2c82ad;
  opacity: 0.8;
  border-radius: 15px;
}

/* Education Pages */
.education-list-section .education-list-wrapper .education-list-item-block {
  background: #ecececb0;
  padding: 10px;
  border-radius: 5px;
}
.education-intro-section .education-intro-wrapper .education-intro-content-block {
  max-width: 500px;
  margin: auto;
}
.education-intro-section .education-intro-wrapper .education-intro-image-block {
  max-width: 300px;
  margin: 0 auto 15px;
}
.clinical-education-intro-section {
  background-color: #e2e2e291;
  clip-path: none;
  padding-bottom: 45px !important;
}
.clinical-education-intro-section .clinical-education-intro-wrapper .clinical-education-intro-section-content .clinical-education-intro-block {
  background-color: #13172a;
  color: #fff;
  border-radius: 5px;
  padding: 1rem;
  justify-content: space-between;
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  height: 100%;
}
.clinical-education-intro-section .clinical-education-intro-wrapper .clinical-education-intro-section-content .clinical-education-intro-block .intro-block-title {
  margin-bottom: 3rem;
}
.clinical-education-plan-section .clinical-education-plan-wrapper .clinical-education-plan-section-content .clinical-plan-block {
  margin-bottom: 15px;
}
.clinical-education-plan-section .clinical-education-plan-wrapper .clinical-education-plan-section-content .clinical-plan-block img {
  max-width: 150px;
}
.education-webinar-intro-section {
  clip-path: none;
  padding-bottom: 45px !important;
}
.education-webinar-intro-section .education-webinar-intro-info {
  margin-left: 50px !important;
}
.webinar-trial-section {
  background: #000;
}
.webinar-trial-section .webinar-trial-content .trial-image-block .trial-image {
  max-width: 300px;
}
.webinar-trial-section .webinar-trial-content .trial-content-block {
  max-width: 650px;
}

/* Gallery Pages */
.gallery-grid-wrapper .gallery-grid-item-wrapper {
    margin-bottom: 25px;
}
.gallery-grid-wrapper .gallery-grid-item-wrapper a {
  text-decoration: none;
  color: #000;
}
.gallery-grid-wrapper .gallery-grid-item-wrapper .gallery-grid-top-block {
  position: relative;
  overflow: hidden;
}
.gallery-grid-wrapper .gallery-grid-item-wrapper .gallery-grid-top-block .gallery-grid-image-block img {
  object-fit: cover;
  height: 200px;
  transition: all ease-in-out 300ms;
}
.gallery-grid-wrapper .gallery-grid-item-wrapper:hover .gallery-grid-top-block .gallery-grid-image-block img {
  transform: scale(1.1);
}
.gallery-grid-wrapper .gallery-grid-item-wrapper .gallery-grid-top-block .gallery-grid-icon-block {
  background-color: #1e4067d6;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  opacity: 0;
  transition: all ease-in-out 300ms;
}
.gallery-grid-wrapper .gallery-grid-item-wrapper .gallery-grid-top-block .gallery-grid-icon-block .gallery-image-link {
  color: #fff;
  font-size: 2rem;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  border-radius: 50%;
  transition: all ease-in-out 300ms;
}
.gallery-grid-wrapper .gallery-grid-item-wrapper .gallery-grid-top-block .gallery-grid-icon-block .gallery-image-link:hover {
  background-color: #fff;
  color: #000;
}
.gallery-grid-wrapper .gallery-grid-item-wrapper:hover .gallery-grid-top-block .gallery-grid-icon-block {
  opacity: 1;
}
.gallery-grid-wrapper .gallery-grid-item-wrapper .gallery-grid-bottom-block {
  padding: 10px 20px;
  font-size: 1.2rem;
  box-shadow: 0 6px 9px 0px #0000001f;
}
.gallery-grid-wrapper .pagination-wrapper {
  margin: 25px 10px;
}
.gallery-single-wrapper .gallery-nav-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gallery-single-wrapper .gallery-nav-block .gallery-nav-link {
  color: #656565;
  background: #ccc;
  display: flex;
  padding: 15px;
  border-radius: 50%;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.gallery-single-wrapper .gallery-details-block {
 color: #616161;
}
.gallery-single-wrapper .gallery-details-block .gallery-category-link {
  text-decoration: none;
  color: #13172a;
  background: #e0e0e0;
  padding: 5px 10px;
  border-radius: 10px;
}

/* Planning Center Page */
.planning-intro-section {
  padding: 2rem;
}
.planning-intro-section .planning-intro-section-wrapper .planning-intro-block {
  width: 85%;
}
.planning-intro-section .planning-intro-section-wrapper .planning-image-block .planning-help-image-block {
  display: flex;
  justify-content: space-evenly;
}
.planning-intro-section .planning-intro-section-wrapper .planning-image-block .planning-help-image-block img {
  border-radius: 50%;
  height: 150px;
  max-width: 150px;
  display: flex;
  margin: auto;
}
.planning-intro-section .planning-intro-section-wrapper .planning-image-block p {
  font-size: 1.3rem;
  text-align: right;
  font-weight: 300;
}
.planning-process-block {
  margin-bottom: 3rem;
}
.planning-process-block .planning-process-text {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.planning-list {
  padding-left: 3rem;
  list-style: circle;
}
.planning-why-section {
  background-color: #00000059;
  background-image: url(../img/bg.jpg);
  color: #fff;
  background-position: center;
  background-attachment: fixed;
  background-size: cover;
  background-blend-mode: color-burn;
  padding: 4rem 0 !important;
}
.planning-statestic-section .planning-statestic-section-wrapper .planning-point-block-wrapper {
  margin-bottom: 2rem;
}
.planning-statestic-section .planning-statestic-section-wrapper .planning-point-block-wrapper .planning-point-block {
  background-color: #ffffffe8;
  color: #444b65;
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 10px;
  min-height: 200px;
  cursor: pointer;
  transition: all ease-in-out 300ms;
}
.planning-statestic-section .planning-statestic-section-wrapper .planning-point-block-wrapper .planning-point-block:hover {
  transform: scale(1.02) translateY(-10px);
  border-radius: 5px;
  background-color: #13172aad;
  color: #fff9eb;
  box-shadow: 0px 6px 12px 2px #252b50cc;
}
.planning-statestic-section .planning-statestic-section-wrapper .planning-point-block-wrapper .planning-point-block:hover .block-icon img {
  filter: invert(1);
}
.planning-statestic-section .planning-statestic-section-wrapper .planning-point-block-wrapper .planning-point-block .block-icon {
  width: 100px;
  margin: 0 auto 15px;
}
.planning-statestic-section .planning-statestic-section-wrapper .planning-point-block-wrapper .planning-point-block .block-icon img {
  filter: contrast(0.5);
  transition: all ease-in-out 300ms;
}
.planning-statestic-section .planning-statestic-section-wrapper .planning-point-block-wrapper .planning-point-block .block-text{
  color: #ffffff8c;
}

/* Policy Pages */
.policy-section-content {
  color: #000;
}
.policy-section-content h5 {
  margin-top: 2rem;
}
.policy-section-content a {
  text-decoration: none;
}
.policy-section-content ul {
  list-style: disc;
}
.policy-section-content ul li {
  margin-bottom: 10px;
}
.policy-section-content ul ul {
  list-style: circle;
  margin: 5px 0 15px;
}
.policy-section-content ul ul li {
  margin-bottom: 5px;
}




/* For Large/4K Screen */
@media (min-width: 1440px) {
  /* Home Page Style for Large Screen Size */
  .intro-img {
    min-height: 150px;
  }
  .intro-img .intro-image-container {
    top: -250px;
  }
  .intro-img.zoom .intro-image-container {
    top: -150px;
  }
  .about-section .btnfoundermore {
    margin-top: -1%;
  }

  /* Login-page Style for Large Screen */
  .circle-bg {
    transform: translateX(150px);
  }
}

/* For Large/4K Screen */
@media (min-width: 1600px) {
  /* Login-page Style for Large Screen */
  .circle-bg {
    transform: translateX(200px);
  }
}

/* Header Style */
@media (min-width: 992px) {
  .navbar-brand {
    order: 1!important;
  }
  .navbar-collapse {
    order: 2!important;
  }
}

/* For Tablet */
@media (max-width: 992px) {
  /* Mobile/Tablet Header */
  .header .navbar {
    //clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
  }
  .navbar-brand {
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .brand-logo {
    max-width: 120px;
  }
  .navbar-dark .navbar-nav .nav-link {
    border: none !important;
  }

  /* Mobile/Tablet Footer */
  .footer .footer-container .footer-logo {
    text-align: center;
  }
  .footer .footer-container .footer-logo img {
    width: 60%;
  }
  .footer-bottom-bar {
    flex-direction: column;
    padding: 15px 15px;
  }
  .bottom-navbar-container {
    margin: 0 auto 10px;
  }
  .bottom-social-container {
    margin: auto;
  }

  /* Mobile/Tablet Cart Page */
  .cart-total-section {
    width: 40%;
  }

  /* Mobile/Tablet Checkout Page */
  .checkout-detail-tile {
    margin-bottom: 25px;
  }
  .checkout-detail-tile, .checkout-address-tile {
    height: auto;
  }

  /* Mobile/Tablet Single Product page */
  .single-product-gallery-container .gallery-thumb img {
    max-width: 80px;
  }

  /* Login-page Style for Large Screen */
  .circle-bg {
    transform: translateX(0);
  }

  /* My Details Page Style */
  .breadcrumb-wrapper {
    margin-top: 25px;
  }

  /* Mobile/Tablet Blog Page */
  .blog-section .blog-section-wrapper {
    width: 80%;
  }
  .case-study-main-container .sidebar {
    flex: 0 0 60%;
    width: 60%;
    z-index: 10;
  }
  .case-study-main-container .page-content {
    flex: 0 0 100%;
    width: 100%;
    z-index: 1;
  }
  .case-study-main-container .mobile-searchbar {
    display: block;
  }
  .case-study-main-container .desktop-searchbar {
    display: none;
  }
  .mobile-sidebar {
    bottom: 0;
    top: 0;
    background: #fff;
    position: absolute;
    padding-top: 100px;
    right: 0;
    transform: translateX(150%);
    box-shadow: -1px 0px 13px 5px #545454d1;
    overflow-y: scroll;
  }
  .mobile-sidebar.show {
    transform: translateX(0);
  }
  .case-study-filter-button-wrapper {
    display: block;
  }
  .overley.show {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #00000073;
    z-index: 2;
  }

  /* Mobile/Tablet Clinic Lab Page Style */
  .clinic-lab-wrapper .clinic-lab-block {
    width: 90%;
  }

  /* Mobile/Tablet Clinical Education Page */
  .clinical-education-plan-section .clinical-education-plan-wrapper .clinical-education-plan-section-content .clinical-plan-block {
    max-width: 400px;
    margin: auto;
  }

  /* Mobile/Tablet Gallery Pages */
  .gallery-single-wrapper .gallert-image-details-block {
    padding: 0 1rem;
  }

  /* Mobile/Tablet About Page */
  .about-statestic-section .about-statestic-block .about-statestic-detail-block {
    max-width: 100%;
  }

  /* Mobile/Tablet Home Page */
  .archive-section .achive-section-wrapper {
    display: block;
    height: 450px;
  }
}

/* For Mibile and Smallet Tablets */
@media (max-width: 768px) {
  .main-container {
      padding: 10px 0;
  }

  /* Mobile/Tablet Cart Page */
  .cart-total-section {
    width: 55%;
  }

  /* Mobile/Tablet Home Page */
  .home-intro-section{
    padding-bottom: 170px;
  }
  .home-intro-section-wrapper {
    height: 100%;
  }
  .intro-img {
    margin-bottom: 20px;
  }
  .intro-img .intro-image-container {
    width: 50%;
    left: 50%;
    transform: translateX(-50%);
    top: -170px;
  }
  .testimonial-section {
    height: 720px;
  }

  /* Mobile/Tablet About Page */
  .about-intro-section {
    padding-top: 110px;
  }
  .directors-section .directors-block .directors-details-block, .directors-section .directors-block .directors-details-block .directors-text {
    max-width: 100%;
  }
  .mission-vision-content .circle-wrapper .left-circle {
    width: 200px;
    height: 200px;
  }
  .mission-vision-content .mission-vision-block-wrapper .mission-vision-block .mission-vision-circle {
    height: 100%;
  }

  /* Mobile/Tablet My Details Page */
  .my-details-wrapper {
    max-width: 100%;
    margin: auto;
  }

  /* Mobile/Table BLog Page */
  .blog-section .blog-section-wrapper {
    width: 90%;
    padding: 20px 15px;
  }
  .blog .blog-footer-wrapper .blog-link-block {
    width: 45%;
  }

  /* Mobile/Tablet Case Study Page */
  .case-study-list-section .case-study-list-section-wrapper {
    -webkit-column-count: 2;
    -moz-column-count:2;
    column-count: 2;
  }

  /* Mobile/Tablet Methodology Page */
  .methodology-intro-section .intro-point-wrapper .intro-point-list {
    padding-top: 50px;
  }

  /* Mobile/Tablet Education Page */
  .education-list-section .education-list-wrapper .education-list-item-block {
    padding: 15px 10px;
    margin-bottom: 15px;
  }
  .main-timeline .timeline-icon i {
    padding: 10px;
  }

  /* Mobile/Tablet Clinical Education Page */
  .clinical-education-intro-section .clinical-education-intro-wrapper .clinical-education-intro-section-content .clinical-education-intro-block {
    height: auto;
    margin-bottom: 15px;
  }

  /* Mobile/Tablet Education Webinar Page */
  .education-webinar-intro-section .education-webinar-intro-info {
    margin-left: 10px !important;
  }

  /* Mobile/Tablet Planning Center Page */
  .planning-intro-section .planning-intro-section-wrapper .planning-intro-block {
    width: 100%;
  }

  /* Mobile/Tablet Order Details Page */
  .order-wrapper {
    margin: 8px;
  }
}

/* For Mibile and Smallet Devices */
@media (max-width: 576px) {
  /* Mobile/Tablet Cart Page */
  .cart-action-bar {
    flex-direction: column;
    text-align: center;
  }
  .cart-action-bar .cart-action-left {
    margin-bottom: 15px;
  }
  .cart-total-section {
    width: 80%;
  }

  /* Mobile/Tablet Single Product Page */
  .single-product-review-summery .avg-rating {
    border-bottom: 3px solid #ddd;
    border-right: none;
    padding-bottom: 10px;
    margin-bottom: 15px;
  }
  .single-product-review-summery .total-reviews {
    padding-left: 12px;
  }

  /* Mobile/Tablet Home Page */
  .intro-img .intro-image-container {
    width: 70%;
  }
  .testimonial-section {
    height: 850px;
  }

  /* Mobile/Tablet About Page */
  .values-section .values-block {
    margin: 0 20px 20px;
  }
  .directors-section .directors-block {
    margin-bottom: 25px;
  }
  .directors-section .directors-block .directors-details-block {
    max-width: 60%;
  }
  .vision-block {
    padding-left: 0 !important;
  }
  .mission-vision-content .mission-vision-block-wrapper .mission-vision-block .mission-vision-text {
    max-width: 100%;
    padding-left: 25px;
  }

  /* Mobile/Tablet My Account Page */
  .my-account-section .my-account-block-wrapper .my-account-block .icon {
    font-size: 3rem;
  }
  .my-account-section .my-account-block-wrapper .my-account-block .block-title {
    font-size: 1.1rem;
  }
  .my-account-section .my-account-block-wrapper .my-account-block .block-text{
    font-size: 0.8rem;
  }

  /* Mobile/Tablet Case Study Page */
  .case-study-list-section .case-study-list-section-wrapper {
    -webkit-column-count: 1;
    -moz-column-count:1;
    column-count: 1;
  }

  /* Mobile/Tablet Methodology Page */
  .methodology-intro-section .intro-point-wrapper .intro-point-list {
    max-width: 80%;
  }

  /* Mobile/Tablet Gallery Pages */
  .category-wrapper {
    padding: 0 20px;
  }
  .gallery-grid-wrapper, .gallery-single-wrapper, .breadcrumb-wrapper, .single-product-section {
    padding: 0 10px;
  }
}

/* For Extra Small Device */
@media (max-width: 425px) {
  /* Login-page Style for Extra Samll Screen */
  .circle-bg {
    width: 350px;
    height: 350px;
    padding: 40px;
  }
  .login-right-block .login-text h4, .register-right-block .register-text h4 {
    font-size: 0.9rem;
  }
  .login-right-block .login-text p, .register-right-block .register-text p {
    font-size: 0.6rem;
  }
  .login-right-block .login-button-block .btn-lg {
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
  }
  .register-right-block .circle-wrapper .logo {
    width: 250px;
    margin: auto;
  }

  /* My Details Page Style for Extra Small Screen */
  .breadcrumb-wrapper {
    margin: 25px 10px 0;
  }
  .my-details-wrapper {
    margin: 25px 10px 0;
  }

  /* Methodology Page Style for Extra Small Scren */
  .methodology-intro-section .intro-point-wrapper {
    clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 100%);
  }

  /* Testimonial Section */
  .testimonial-section {
    height: 950px;
  }
}
