@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root {
  --color-1: #00c3eb;
  --site-radius:6px;
}

body {
  line-height: 1.5;
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  color: #121212;
}

#loading {
  width: fit-content;
  clip-path: inset(0 1.5ch 0 0);
  animation: l4 1s steps(4) infinite;
  display: none;
}
#loading:before {
  content:"Sending..."
}
@keyframes l4 {to{clip-path: inset(0 -1ch 0 0)}}
.mb20 {
  margin-bottom: 20px;
}

.sec_2n .section-title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 20px;
}

.sec_3n .section-title {
  font-size: 28px;
  margin-bottom: 20px;
}

.sec_grid_3n {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  padding-left: 0;
}

.sec_grid_3n li {
  border: 1px solid var(--color-1);
  padding: 30px 5px;
  border-radius: var(--site-radius);
  text-align: center;
}

.sec_grid_3n li:hover {
  box-shadow: 0 0 14px 0 rgba(0, 0, 0, .2);
  background-color: #fff;
}

.sec_grid_3n li .icon {
  margin-bottom: 10px;
}
@media(max-width: 767px){
  .sec_grid_3n li {
    padding: 10px 5px;
  }
  .sec_grid_3n li .icon img{
    width: 50px;
  }
  .icon_text {
    font-size: 14px;
  }
}
.site_pills .tab-pane ul{
  list-style: disc;
}
.site_pills .tab-pane li{
  margin-bottom: 16px;
}
.site_pills #v-pills-coupon ul li,
.site_pills #v-pills-comparison ul li
{
  margin-bottom: 0;
}
.site_pills #v-pills-coupon ul,
.site_pills #v-pills-comparison ul
{
  margin-bottom: 16px;
}
.site_pills #v-pills-coupon p:not(:first-child),
.site_pills #v-pills-comparison p:not(:first-child)
{
  margin-bottom: 4px;
}
.site_pills .tab-pane ol {
  list-style: decimal;
}
.site_pills {
  margin-right: -10px;
  margin-left: -10px;
}

.site_pills .col-3,
.site_pills .col-9 {
  padding-left: 5px;
  padding-right: 5px;
}

.site_pills .nav-pills .nav-link.active {
  background-color: var(--color-1);
}

.site_pills .nav-pills .nav-link:not(.active):hover {
  color: var(--color-1);
}

.site_pills .nav-link {
  padding: 10px 12px;
  font-weight: 600;
  transition: 0.2s ease;
  background-color: #11a6c514;
  color: #6c6c86;
}
/*Demo Page css*/
.demo_box{
  display: flex;
}
.demo_box .front_demo{
  border-radius: var(--site-radius);
  border: 10px solid #f4f4f4;
}
.front_demo {
    background-image: url("../images/banner/banner.jpg");
    background-size: cover;
}

.sec__003_bx {
  box-shadow: 0 0 10px #0001;
  border-radius: 6px;
  background-color: #f8f9fa;
  padding: 20px 20px 30px;
  text-align: center;
}
.sec_feature .site_pills .tab-content ul{
  counter-reset: list-counter;
  padding-left: 10px;
}
.sec_feature .site_pills .tab-content ul li{
  counter-increment: list-counter;
  list-style: none;
}
.sec_feature .site_pills #v-pills-front ul li,
.sec_feature .site_pills #v-pills-admin ul li,
.sec_feature .site_pills #v-pills-user ul li{
  margin-bottom: 0;
}
.sec_feature .site_pills .tab-content ul li::before {
  content: counter(list-counter) ".";
  display: inline-block;
  margin-right: 4px;
}
.sec_feature .site_pills #v-pills-front ul,
.sec_feature .site_pills #v-pills-admin ul,
.sec_feature .site_pills #v-pills-user ul {
    display: grid;
    gap: 16px;
    grid-template-columns: auto;
}
@media(min-width: 992px){
  .sec_feature .site_pills #v-pills-front ul,
  .sec_feature .site_pills #v-pills-admin ul,
  .sec_feature .site_pills #v-pills-user ul {
    grid-template-columns: auto auto auto;
  }
  .new__sec_003 .row{
    justify-content: space-between;
  }
  .portfolio_sec.new__sec_003 .row{
    justify-content: left;
  }
  .new__sec_003:not(.portfolio_sec) .col-lg-4{
    -ms-flex: 0 0 32%;
    flex: 0 0 32%;
    max-width: 32%;
  }
  .sec__003_bx{
    padding: 30px 50px 40px;
  }
}
.sec__003_bx:hover{
  transform: scale(1.1);
  transition: transform .3s linear;
}
.portfolio_sec .sec__003_bx:hover {
  transform: scale(1.02);
}
.sec__003_bx p{
  font-weight: 400;
  font-size: 16px;
  margin: 20px 0;
}
.sec__03_img{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  margin-bottom: 20px;
}
.portfolio_sec .sec__03_img {
  height: auto;
}
.portfolio_sec .sec__03_img img{
  max-width: 250px;
  max-height: 50px;
}
.portfolio_sec .sec__003_content h5{
  margin-bottom: 20px;
}
.back_demo {
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 0 10px #0001;
    padding: 24px;
}

.demo_sec_back .back_demo {
  position: relative;
}

.front_demo p,
.back_demo p{
  margin-bottom: 20px;
}
.front_bx,
.back_bx {
  padding: 20px;
  background-color: #f3f2f2;
  border-radius: var(--site-radius);
  border: 2px dashed #0000000f;
  max-width: 80%;
  margin-bottom: 20px;
}

.front_bx span{
  display: block;
}

.demo_box .btn{
  padding: 8px 20px;
}
@media(min-width: 992px){
  .demo_sec_front .back_demo {
    margin-left: -50px;
  }
  .demo_sec_back .back_demo {
    margin-right: -50px;
  }
  .demo_box > div.front_demo{
    width: 85%;
  }
  .back_demo{
    margin: 50px 0;
  }
}
@media(max-width: 991.98px){
  .demo_box{
    flex-direction: column;
  }
  .demo_box .front_demo{
    height: 250px;
  }
  .demo_sec_back .demo_box .front_demo{
      order: 1;
  }
  .demo_sec_back .back_demo{
    order: 2;
  }

}
.site_pills .nav-link:not(:last-child) {
  margin-bottom: 10px;
}
/*Demo Page css*/

@media(min-width: 992px){
  .site_pills .nav-link {
    padding: 13px 20px;
    font-size: 16px;
  }
  .service_dd {
    position: static;
  }

  .service_dd .dropdown-menu{
    width: 50%;
    right: 0;
    margin-left: auto;
    margin-right: auto;
  }
  .site_pills .nav-link:not(:last-child) {
    margin-bottom: 20px;
  }

}


.site_pills .tab-content {
  background-color: #fff;
  padding: 10px;
  border-radius: var(--site-radius);
}

.lead {
  font-size: 18px;
}

.sec_grid_3n .icon i {
  font-size: 32px;
}

.cons_pros li,
.process_ol li {
  margin-bottom: 6px;
}

.display-1 {
  font-size: 100px;
}

@media (max-width: 575px) {
  .display-1 {
    font-size: 50px;
  }
  .site_pills .tab-pane ol{
    padding-left: 20px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #222;
  font-weight: 700;
  line-height: 1.2;
}

h1,
.h1 {
  font-size: 44px;
}

@media (max-width: 575px) {

  h1,
  .h1 {
    font-size: 32px;
  }
}

h2,
.h2 {
  font-size: 36px;
}

@media (max-width: 575px) {

  h2,
  .h2 {
    font-size: 24px;
  }
}

h3,
.h3 {
  font-size: 30px;
}

@media (max-width: 575px) {

  h3,
  .h3 {
    font-size: 22px;
  }
}

h4,
.h4 {
  font-size: 24px;
}

h5,
.h5 {
  font-size: 18px;
}

h6,
.h6 {
  font-size: 14px;
}

.icon-lg {
  font-size: 50px;
}

.icon {
  font-size: 40px;
}

.icon-sm {
  font-size: 30px;
}

.icon-xs {
  font-size: 20px;
}

/* Button style */
.btn {
  text-transform: capitalize;
  padding: 8px 20px;
  border-radius: var(--site-radius);
  font-weight: 600;
  border: 1px solid;
  position: relative;
  z-index: 1;
  transition: 0.2s ease;
}
@media(min-width: 992px){
  .btn {
      /*padding: 13px 45px;*/
    }
}
.btn:hover,
.btn:active,
.btn:focus {
  outline: 0;
  box-shadow: none !important;
  box-shadow: 0px 18px 18px 0px rgba(20, 28, 91, 0.19);
}

.btn-lg {
  font-size: 20px;
  padding: 20px 90px;
}

.btn-primary {
  background: linear-gradient(37deg, #00c3eb82 1%, var(--color-1) 100%);
  color: #fff;
  border: 0;
}

.btn-primary:active,
.btn-primary:hover,
.btn-primary.focus,
.btn-primary.active {
  background: linear-gradient(37deg, var(--color-1) 1%, #00c3eb82 100%) !important;
  color: #fff;
  border: 0;
}

.btn-outline-primary {
  background: transparent;
  color: #f7463a;
  border-color: #f7463a;
}

.btn-outline-primary:active,
.btn-outline-primary:hover,
.btn-outline-primary.focus,
.btn-outline-primary.active {
  background: linear-gradient(37deg, #ffffff50 1%, var(--color-1) 100%) !important;
  color: #fff;
  border-color: #f7463a;
}

.btn-secondary {
  background: var(--color-1);
  color: #fff;
  border: 0;
}

.btn-secondary:active,
.btn-secondary:hover,
.btn-secondary.focus,
.btn-secondary.active {
  background: var(--color-1) !important;
  color: #fff;
  border: 0;
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

.btn-outline-light:active,
.btn-outline-light:hover,
.btn-outline-light.focus,
.btn-outline-light.active {
  background: #fff !important;
  color: #000;
  border-color: #fff;
}

.btn-transparent {
  color: #fff;
  /*color: #f7463a;*/
  border: 0;
  /*padding-left: 0;*/
  background: linear-gradient(37deg, #00c3eb82 1%, var(--color-1) 100%);
  /*-webkit-background-clip: text;
  -webkit-text-fill-color: transparent;*/
}

.btn-transparent:active,
.btn-transparent:hover,
.btn-transparent.focus,
.btn-transparent.active,
.btn-transparent:not(:disabled):not(.disabled):active {
  color: #fff;
  border: 0;
  /*padding-left: 0;*/
  background: linear-gradient(37deg, var(--color-1) 15%, #00c3eb82 100%);
  /*  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;*/
  box-shadow: none;
  text-decoration: none;
}

body {
  background-color: #fff;
  overflow-x: hidden;
}

::-moz-selection {
  background: #f9746b;
  color: #fff;
}

::selection {
  background: var(--color-1);
  color: #fff;
}

/* preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

ol:not(.process_ol),
ul:not(.cons_pros) {
  list-style-type: none;
  margin: 0px;
}

img {
  vertical-align: middle;
  border: 0;
}

a {
  color: var(--color-1);
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

.hover-text-underline:hover {
  text-decoration: underline;
}

a,
button,
select {
  cursor: pointer;
  transition: 0.2s ease;
}

a:focus,
button:focus,
select:focus {
  outline: 0;
}

a:hover {
  color: #27cbed;
}

.network__logos .slick-slide > div,
.project__logos .slick-slide > a {

    display: flex;
    align-items: center;

}
.network__logos .slick-slide > div{
  width: 150px;
  height: 100px;
}
.project__logos .slick-slide > a {
  /*width: 120px;*/
  height: 90px;
  justify-content: center;
}
.project__logos .slick-slide > a > img {
  max-width: 120px;
}
.project__logos .slick-slide > a > img.adjust_this1,
.project__logos .slick-slide > a > img.adjust_this2 {
  max-width: 50px;
}
.network__logos .slick-slide > div  > img,
.network__logos .slick-slide  a  > img {
    object-fit: contain;
}
.slick-slide {
  outline: 0;
}

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


.demo_sec_front{
  padding-bottom: 30px;
}
.demo_sec_back{
  padding-top: 30px;
}
.section-lg {
  padding-top: 170px;
  padding-bottom: 170px;
}

.section-border {
  height: 9px;
  width: 220px;
  background: linear-gradient(37deg, #2c2c2c82 1%, #4a4a4a 100%);
  border-radius: var(--site-radius);
  margin: 20px auto 60px;
}

.bg-cover {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.bg-contain {
  background-size: contain;
  background-position: center right;
  background-repeat: no-repeat;
}

.border-primary {
  border-color: #d2d2e2 !important;
}

/* overlay */
.overlay {
  position: relative;
}

.overlay::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.8;
}

.overlay-primary {
  position: relative;
}

.overlay-primary::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #f7463a;
  opacity: 0.8;
}

.overlay-secondary {
  position: relative;
}

.overlay-secondary::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #8d8d8d;
  opacity: 0.8;
}

.overlay-secondary-half {
  position: relative;
}

.overlay-secondary-half::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to right, var(--color-1) 60%, transparent);
}

.overlay-image {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

.bg-primary {
  background: #f7463a !important;
}

/*.bg-secondary {
  background: var(--color-1) !important;
}*/

.text-primary {
  color: #f7463a !important;
}

.text-secondary {
  color: var(--color-1) !important;
}

.text-gradient-primary {
  /*background: linear-gradient(37deg, #121212 1%, #1118 100%);*/
  background-color: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*.text-light {
  color: #b7b8f1 !important;
}*/

.text-color {
  color: #6c6c86 !important;
}

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

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

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

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

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

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

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

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

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

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

.zindex-1 {
  z-index: 1;
}

.top-100 {
  top: 100px;
}

.overflow-hidden {
  overflow: hidden !important;
}



.shadow {
  box-shadow: 0px 46px 65px 0px rgba(181, 188, 236, 0.16) !important;
}

.bg-gradient-primary {
  background: linear-gradient(37deg, #ffffff50 1%, var(--color-1) 100%) !important;
}

.transition {
  transition: 0.3s ease;
}

.vertical-align-middle {
  vertical-align: middle;
}

/* form control */
.form-control {
  height: 50px;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid #d2d2e2;
}

.form-control:focus {
  box-shadow: none !important;
  border-color: var(--color-1);
}

textarea.form-control {
  height: 150px;
}

/* /form control */
/* page-title */
.page-title {
  padding: 170px 0 190px;
}

/* /page-title */
/* list style */
.list-styled {
  padding-left: 0;
}

.list-styled li {
  position: relative;
  padding-left: 25px;
  list-style-type: none;
}

.list-styled li::before {
  position: absolute;
  content: "\e65d";
  font-family: "themify";
  font-size: 14px;
  left: 0;
  top: 0px;
  color: var(--color-1);
  transition: 0.3s ease;
}

/* social icons */
.social-icons a {
  display: block;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  line-height: 50px;
  background: var(--color-1);
  color: #fff;
  text-align: center;
}

/* /social icons */
.navigation {
  padding: 1px 100px;
  transition: 0.3s ease;
  background-color: #fff;
  min-height: 78px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
}

.navigation .navbar-brand img {
  max-width: 250px;
}

/*.navigation:not(.nav-bg) .navbar-brand img.sticky{
  display: none;
}
.fixed-top.nav-bg .navbar-brand img.not-sticky{
  display: none;
}*/
.navigation.nav-bg {
  /*background-color: var(--color-1);
  padding: 1px 100px;*/
}

@media(min-width: 993px){
  .navigation.nav-bg {
      padding: 1px 30px;
  }
}
@media(min-width: 1200px){
  .navigation.nav-bg {
      padding: 1px 50px;
  }
}
@media(min-width: 1400px){
  .navigation.nav-bg {
      padding: 1px 100px;
  }
}
@media (max-width: 991px) {
  .navigation.nav-bg {
    padding: 1px 0;
  }
  .navigation .navbar-brand img {
    max-width: 150px;
  }
}

@media (max-width: 991px) {
  .navigation {
    padding: 20px;
    min-height: auto;
    /*background: var(--color-1);*/
  }
  .navbar-dark .navbar-toggler {
    border-color: #747474;
  }
  .navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,<svg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'><path stroke='rgba(74, 74, 74, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/></svg>");
  }
}

.navbar .nav-item .nav-link {
  padding: 15px;
  font-size: 16px;
}

.navbar .nav-item.active {
  font-weight: 500;
}

.navbar .dropdown-menu {
  box-shadow: 0px 3px 9px 0px rgba(0, 0, 0, 0.12);
  padding-right:7px;
  padding-left: 7px;
  border: 0;
  top: calc(100% - 2px);
  left: 0;
  border-radius: 0 0 var(--site-radius) var(--site-radius);
  background: #fff;
}

.navbar .dropdown-menu.show {
  display: block !important;
}

.navbar .dropdown-item {
  position: relative;
  color: #000;
  transition: 0.2s ease;
  padding: 8px;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 0 !important;
  white-space: normal;
}
.navbar .dropdown-item.active,
.navbar .dropdown-item:active{
  background-color: #f8f9fa;
}

.navbar .dropdown-item:not(:last-child) {
  margin-bottom: 10px;
}

.navigation .navbar-dark .navbar-nav .nav-link {
  color: #4a4a4a;
}

.banner {
  position: relative;
}
.banner:not(.other_pages){
  min-height: 650px;
} 
.other_pages {
  min-height: 300px;
}
.home-page .banner:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #0009;
}

.banner p {
  font-size: 18px;
}

.content-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hover-bg-secondary {
  transition: 0.2s ease;
}

.hover-bg-secondary * {
  transition: inherit;
}

.hover-bg-secondary:hover {
  background: #4a4a4a;
  border-color: #4a4a4a;
}

.hover-bg-secondary:hover * {
  color: #fff;
}

.hover-bg-secondary.active {
  background: #4a4a4a;
  border-color: #4a4a4a;
}

.hover-bg-secondary.active * {
  color: #fff;
}

.hover-bg-primary {
  transition: 0.2s ease;
}

.hover-bg-primary * {
  transition: inherit;
}

.hover-bg-primary:hover {
  background: #f7463a;
}

.hover-bg-primary:hover * {
  color: #fff;
}

.hover-bg-primary.active {
  background: #f7463a;
}

.hover-bg-primary.active * {
  color: #fff;
}

.icon-box:not(.no_box) {
  height: 100px;
  width: 100px;
  line-height: 100px;
  margin-bottom: 20px;
}

.icon-box-sm {
  height: 80px;
  width: 80px;
  line-height: 80px;
}

.icon-watermark {
  position: absolute;
  left: 50%;
  top: 32%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  transition: inherit;
}

.card:hover .icon-watermark {
  transform: translate(-50%, -50%) scale(1.5);
}

.bg-image {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: auto;
}

.bg-image img {
  height: 100%;
  max-width: 100%;
}

@media (max-width: 991px) {
  .bg-image img {
    display: none;
  }
}

@media (max-width: 767px) {
  .bg-image img {
    display: block;
    height: auto;
  }
}

.hover-shadow::before {
  transition: 0.3s ease;
  position: absolute;
  height: 100%;
  box-shadow: 0px 33px 49px 0px rgba(190, 193, 228, 0.31);
  width: 100%;
  left: 0;
  right: 0;
  z-index: 1;
  content: "";
  opacity: 0;
}

.hover-shadow:hover::before {
  opacity: 1;
}


/*breadcrumb*/
.site_breadcrumb  {
  background-color: #e9ecef;
}
.site_breadcrumb .breadcrumb {
  background-color: transparent;
}
/*breadcrumb*/

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  padding: 30px 20px;
  box-shadow: 0 3px 20px -2px rgba(108, 117, 125, 0.15);
  background: #fff;
  height: 100%;
  border-top: 4px solid #fff;
  border-radius: var(--site-radius);
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
  color: var(--color-secondary);
}

.pricing h4 {
  font-size: 40px;
  color: var(--color-1);
  font-weight: 400;
  font-family: var(--font-primary);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: rgba(108, 117, 125, 0.8);
  font-size: 18px;
}

.how-work {
  color: #222;
    font-weight: 700;
    line-height: 1.2;
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: #6c757d;
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.pricing ul i {
  color: #059652;
  font-size: 14px;
  padding-right: 5px;
}

.pricing ul .na {
  color: rgba(108, 117, 125, 0.5);
}

.pricing ul .na i {
  color: rgba(108, 117, 125, 0.5);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: var(--site-radius);
  color: var(--color-1);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s;
  border: 1px solid var(--color-1);
}

.pricing .buy-btn:hover {
  background: var(--color-1);
  color: #fff;
}

.pricing .featured {
  border-top-color: var(--color-1);
}

.pricing .featured .buy-btn {
  background: var(--color-1);
  color: #fff;
}
.section-sm {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
  .section-sm {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}



/*Cart Page css*/

.shopping-cart.dark{
  background-color: #f6f6f6;
}

.shopping-cart .content{
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.075);
  background-color: white;
}

.shopping-cart .block-heading{
    padding-top: 50px;
    margin-bottom: 40px;
    text-align: center;
}

.shopping-cart .block-heading p{
  text-align: center;
  max-width: 420px;
  margin: auto;
  opacity:0.7;
}

.shopping-cart .dark .block-heading p{
  opacity:0.8;
}

.shopping-cart .block-heading h1,
.shopping-cart .block-heading h2,
.shopping-cart .block-heading h3 {
  margin-bottom:1.2rem;
  color: #3b99e0;
}

.shopping-cart .items{
  margin: auto;
}

.shopping-cart .items .product{
  padding: 20px;
  padding-bottom: 0;
}

.shopping-cart .items .product .info{
  padding-top: 0px;
  text-align: center;
}

.shopping-cart .items .product .info .product-name{
  font-weight: 600;
}

.shopping-cart .items .product .info .product-name .product-info{
  font-size: 14px;
  margin-top: 15px;
}

.shopping-cart .items .product .info .product-name .product-info .value{
  font-weight: 400;
}

.shopping-cart .items .product .info .quantity .quantity-input{
    margin: auto;
    width: 80px;
}

.shopping-cart .items .product .info .price{
  margin-top: 15px;
    font-weight: bold;
    font-size: 22px;
 }

.shopping-cart .summary{
  border-top: 2px solid var(--color-1);
  background-color: #f7fbff;
  height: 100%;
  padding: 30px;
}

.shopping-cart .summary h3{
  text-align: center;
  font-size: 1.3em;
  font-weight: 600;
  padding-top: 20px;
  padding-bottom: 20px;
}
.shopping-cart .summary .summary-item {
  padding-bottom: 10px;
  padding-top: 10px;
}
.shopping-cart .summary .summary-item:not(:last-of-type){
  
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.shopping-cart .summary .text{
  font-size: 1em;
  font-weight: 600;
}

.shopping-cart .summary .price{
  font-size: 1em;
  float: right;
}

.shopping-cart .summary button{
  margin-top: 10px;
}

@media (min-width: 768px) {
  .shopping-cart .items .product .info {
    padding-top: 25px;
    text-align: left; 
  }

  .shopping-cart .items .product .info .price {
    font-weight: bold;
    font-size: 22px;
    top: 17px; 
  }

  .shopping-cart .items .product .info .quantity {
    text-align: center; 
  }
  .shopping-cart .items .product .info .quantity .quantity-input {
    padding: 4px 10px;
    text-align: center; 
  }
}



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  font-size: 20px;
  background: var(--color-1);
  color: #fff;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--site-radius);
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #000;
}
.contact .info-item p,
.contact .info-item address{
  margin-bottom: 0;
}
label.error{
  color: red;
}
.contact .info-item p > a
.contact .info-item address, {
  padding: 0;
  font-size: 14px;
  color: rgba(14, 29, 52, 0.8);
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: var(--color-1);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: var(--site-radius);
  opacity: .9;
}

.contact .php-email-form button[type=submit]:hover {
  opacity: 1;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog .blog-pagination {
  margin-top: 30px;
  color: #555555;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
  border-radius: var(--site-radius);
}

.blog .blog-pagination li a {
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: var(--color-1);
  color: #fff;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

/*--------------------------------------------------------------
# Blog Posts List
--------------------------------------------------------------*/
.blog .posts-list .col-xl-4{
   margin-bottom: 30px;
}
.blog .posts-list article {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 24px;
  height: 100%;
  border-radius: var(--site-radius);
  overflow: hidden;
}


.blog .posts-list .post-img {
  max-height: 240px;
  margin: -30px -24px 15px -24px;
  overflow: hidden;
}

.blog .posts-list .post-category {
  font-size: 16px;
  color: #555555;
  margin-bottom: 10px;
}

.blog .posts-list .title {
  font-size: 18px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 0 0;
}

.blog .posts-list .title a {
  color: #222;
  transition: 0.3s;
}

.blog .posts-list .title a:hover {
  color: var(--color-1);
}

.blog .posts-list .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog .posts-list .post-author-list {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog .posts-list .post-date {
  font-size: 14px;
  color: #3c3c3c;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Details
--------------------------------------------------------------*/
.blog .blog-details {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 24px;
  border-radius: var(--site-radius);
}

.blog .blog-details .post-img {
  margin: -24px -24px 20px -24px;
  overflow: hidden;
  border-radius: var(--site-radius) var(--site-radius) 0 0;
}

.blog-details .post-img img{
  width: 100%;
  height: 500px;
  object-fit: contain;
}
.blog .blog-details .title {
  font-size: 32px;
  font-weight: 700;
  padding: 0;
  margin: 20px 0 0 0;
  color: var(--color-default);
}

.blog .blog-details .content {
  margin-top: 20px;
}
.blog .blog-details .content p{
  font-size: 16px;
}
.blog .blog-details .content h2{
  font-size: 26px;
}
.blog .blog-details .content ol{
  list-style: decimal;
}
.blog .blog-details .content ul {
  list-style: disc;
}
.blog .blog-details .content li{
  margin-bottom: 8px;
  font-size: 16px;
}
.blog .blog-details .content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .blog-details .content blockquote {
  overflow: hidden;
  background-color: rgba(34, 34, 34, 0.06);
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .blog-details .content blockquote p {
  color: var(--color-default);
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .blog-details .content blockquote:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: var(--color-1);
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .blog-details .meta-top {
  margin-top: 20px;
  color: #6c757d;
}

.blog .blog-details .meta-top ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .blog-details .meta-top ul li+li {
  padding-left: 20px;
}

.blog .blog-details .meta-top i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
  color: var(--color-primary);
}

.blog .blog-details .meta-top a {
  color: #6c757d;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .blog-details .meta-bottom {
  padding-top: 10px;
  border-top: 1px solid rgba(34, 34, 34, 0.15);
}

.blog .blog-details .meta-bottom i {
  color: #555555;
  display: inline;
}

.blog .blog-details .meta-bottom a {
  color: rgba(34, 34, 34, 0.8);
  transition: 0.3s;
}

.blog .blog-details .meta-bottom a:hover {
  color: var(--color-primary);
}

.blog .blog-details .meta-bottom .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .cats li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .blog-details .meta-bottom .tags li {
  display: inline-block;
}

.blog .blog-details .meta-bottom .tags li+li::before {
  padding-right: 6px;
  color: var(--color-default);
  content: ",";
}

.blog .blog-details .meta-bottom .share {
  font-size: 16px;
}

.blog .blog-details .meta-bottom .share i {
  padding-left: 5px;
}

.blog .post-author {
  padding: 20px;
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: var(--site-radius);
}

.blog .post-author img {
  max-width: 120px;
  margin-right: 20px;
}

.blog .post-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: var(--color-default);
}

.blog .post-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .post-author .social-links a {
  color: rgba(34, 34, 34, 0.5);
  margin-right: 5px;
}

.blog .post-author p {
  font-style: italic;
  color: rgba(108, 117, 125, 0.8);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  border-radius: var(--site-radius);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: var(--color-default);
}

.blog .sidebar .sidebar-item+.sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.3);
  padding: 5px 10px;
  position: relative;
  border-radius: 50px;
}

.blog .sidebar .search-form form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 50px;
  width: calc(100% - 60px);
}

.blog .sidebar .search-form form input[type=text]:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 25px;
  margin: -1px;
  background: var(--color-primary);
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(0, 131, 116, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-primary);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(34, 34, 34, 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-default);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #555555;
  font-size: 14px;
  padding: 6px 20px;
  margin: 0 6px 8px 0;
  border: 1px solid #d5d5d5;
  display: inline-block;
  transition: 0.3s;
  border-radius: 50px;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(85, 85, 85, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Blog Comments
--------------------------------------------------------------*/
.blog .comments {
  margin-top: 30px;
}

.blog .comments .comments-count {
  font-weight: bold;
}

.blog .comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .comments .comment .comment-img {
  margin-right: 14px;
}

.blog .comments .comment .comment-img img {
  width: 60px;
}

.blog .comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .comments .comment h5 a {
  font-weight: bold;
  color: var(--color-default);
  transition: 0.3s;
}

.blog .comments .comment h5 a:hover {
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply {
  padding-left: 10px;
  color: var(--color-primary);
}

.blog .comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .comments .comment time {
  display: block;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.8);
  margin-bottom: 5px;
}

.blog .comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.blog .comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .comments .reply-form p {
  font-size: 14px;
}

.blog .comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form input:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.blog .comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: rgba(0, 131, 116, 0.8);
}

.blog .comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .comments .reply-form .btn-primary {
  border-radius: 50px;
  padding: 14px 40px;
  border: 0;
  background-color: var(--color-secondary);
}

.blog .comments .reply-form .btn-primary:hover {
  background-color: rgba(248, 90, 64, 0.8);
}

/*Faqs*/
.site_faqs .card
{
  border: 0;
  margin-bottom: 20px;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
}
.site_faqs .card .card-header{
  padding: 20px;
}

.site_faqs .card-header h5 button {
  border: 0;
  display: block;
  padding: 0;
  text-decoration: none;
  color: #222;
}
/*FAQS*/
/*Service*/
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.service_sec .icon-box {
  margin-bottom: 24px;
  padding: 30px;
  border-radius: var(--site-radius);
  background: #fff;
  transition: 0.3s;
  display: flex;
  box-shadow: 0 0 10px 0 #0002;
}

.service_sec .icon-box:hover {
  background: var(--color-1);
}
.service_sec .service_icon {
  margin-right: 20px;
}
.service_sec .icon-box i {
  color:var(--color-1);
  font-size: 40px;
}

.service_sec .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
  color: #444;
}


.service_sec .icon-box p {
  font-size: 14px;
  color: #444;
  margin-bottom: 0;
}
.service_sec .icon-box:hover i,
.service_sec .icon-box:hover h4,
.service_sec .icon-box:hover p {
  color: #fff;
}
/*Service*/
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  --background-color: #f4f4f4;
  color: #000;
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 20px;
}

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

.footer .footer-about .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-1);
  font-size: 18px;
  color: var(--color-1);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  background-color: var(--color-1);
  color:#fff;
}

.footer h4 {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding-bottom: 6px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  line-height: 1;
  color: #222;
}

.footer .footer-links ul a:hover {
  color: var(--color-1);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  background-color: #ebebeb;
  padding-top: 10px;
  padding-bottom: 10px;
}

.footer .copyright p {
  margin-bottom: 0;
  color: #222;
}

/* progressbar */
.progress-block .progress {
  height: 8px;
  border-radius: 10px;
  margin-bottom: 40px;
  overflow: visible;
  position: relative;
  box-shadow: 0px 9px 24px 0px rgba(19, 5, 44, 0.21);
}

.progress-block .progress-bar {
  background: linear-gradient(37deg, #ffffff50 1%, var(--color-1) 100%);
  width: 0;
  transition: all 3s ease-in-out;
  top: 0;
  left: 0;
  height: 100%;
  border-radius: 10px;
}

.progress-block .progress-bar .skill-number {
  position: absolute;
  top: -22px;
  right: 0px;
}

/* /progressbar */
/* video */
.video-player iframe {
  width: 100%;
  height: 100%;
}

.video-player .play-icon {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
}

/* ripple animation */
.ripple {
  border-radius: 50%;
  position: absolute;
  height: 130%;
  width: 130%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.ripple::after {
  opacity: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  border: 1px solid #d2d2e2;
  border-radius: 100%;
  -webkit-animation-name: ripple;
  animation-name: ripple;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  z-index: -1;
}

.ripple::before {
  opacity: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  content: "";
  height: 100%;
  width: 100%;
  border: 1px solid #d2d2e2;
  border-radius: 100%;
  -webkit-animation-name: ripple;
  animation-name: ripple;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  z-index: -1;
}

@-webkit-keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(0.75, 0.75, 1);
  }

  to {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1);
  }
}

@keyframes ripple {
  from {
    opacity: 1;
    transform: scale3d(0.75, 0.75, 1);
  }

  to {
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1);
  }
}

/* /video */
/* card slider */
@media (max-width: 991px) {
  .ui-card-slider .left-slide::before {
    left: -100px;
  }
}

@media (max-width: 767px) {
  .ui-card-slider .left-slide::before {
    display: none;
  }
}

@media (max-width: 991px) {
  .ui-card-slider .right-slide::before {
    right: -100px;
  }
}

@media (max-width: 767px) {
  .ui-card-slider .right-slide::before {
    display: none;
  }
}

/* /card slider */
/* google map */
.map {
  height: 750px;
}

/* /google map */
/* team */
.img-thumb-circle {
  border-radius: 50%;
  overflow: hidden;
  max-height: 260px;
  max-width: 260px;
}

.card.not-border {
  border: 0;
}

/*.card {
  border: 0;
  border-radius: 0;
}
.card-img-top {
  border-radius: 0;
}*/
.card-header {
  border: 0;
}

.card-body {
  border: 0;
  border-radius: 0;
}

.card-footer {
  border: 0;
}
