:root {
  --primary-color: #004ECC;
  /* #FF5733 */
  --primary-color-hover: #005cd2;
  /* #eb340f */
  --secondary-color-hover: #11103E;
  --success-color: #1fa74b;
  --success-color-hover: #018a21;
  --danger-color: #dc3545;
  --danger-color-hover: #c32231;
  --warning-color: #ffd000;
  --warning-color-hover: #dc9600;
  --info-color: #005dbf;
  --info-color-hover: #00458f;
  --light-color: #f8f9fa;
  --light-color-hover: #e1e2e4;
  --dark-color: #152544;
  --dark-color-hover: #152544;


  --danger-variant-color: rgba(247, 88, 66, 0.4);
  --white-color: #FFF;
  --secondary-color: #11103E;
  --font-color: #152544;
  --background-color: #ffff;
  /* #F8F8F8 */
  --selection-color: #FFB2A1;
  --box-shadow: 0px 10px 50px rgba(52, 46, 173, 0.1);
  --container-width-lg: 80%;
  --container-width-md: 90%;
  --container-width-sm: 94%;
  --border-radius: 44px;
  --transaction: all 400ms ease;

  --product-box-radius: 35px;

  --website-fontfamily: 'Poppins', sans-serif;
  --body-fontsize: 15px;

  /* banner*/
  --slider-nav-position: -35px;

  /* Footer */
  --footer-bg: #11103E;

  /* Heading*/
  --heading-color: #152544;

  --heading-1Margin: 0 0 20px 0;
  --heading-1Fontweight: 600;
  --heading-1color: #152544;

  --heading-1FontSizeTop: 16px;
  --heading-1FontweightTop: 600;
  --heading-1colorTop: #152544;

  --heading-1FontSizeSub: 18px;
  --heading-1FontSizeSubM: 14px;
  --heading-1FontweightSub: 400;

}




/* text selection */
::selection {
  background:#72c421;
}

/* window Scroll */
* {
  scrollbar-color: rgba(0, 0, 0, 0.3) rgba(0, 0, 0, 0.05);
  scrollbar-width: thin;
}

*::-webkit-scrollbar {
  width: 6px;
}

*::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  width: 0px;
}

*::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0px;
}



/* Website Css ============================================= */
html {
	scroll-behavior: smooth;
}

body {
  font-family: var(--website-fontfamily);
  font-size: var(--body-fontsize);
  line-height: 22px;
  font-weight: 400;
  background-color: var(--background-color);
  color: var(--font-color);
  background-image: linear-gradient(180deg, #fff 0%, var(--background-color) 10%);
  padding-top: 60px;
  -webkit-font-smoothing: antialiased;

}

body.home {
  background-image: linear-gradient(180deg, var(--background-color) 0%, var(--background-color) 10%);
}

img {
  max-width: 100%;
}


.fw-400 {
  font-weight: 400 !important;
}

.fw-200 {
  font-weight: 200 !important;
}

.theme-color {
  color: var(--primary-color);
}

.list-numb {
  list-style: none;
  margin-left: 0em;
  counter-reset: line;
}

.list-numb>li {
  position: relative;
  margin-bottom: 1.5em;
}

.list-numb>li:before {
  position: absolute;
  left: -2.25em;
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 0.5em;
  background-color: var(--primary-color);
  border-radius: 50%;
  color: #fff;
  text-align: center;
  line-height: 1.25em;
  counter-increment: line;
  content: counter(line);
}

.list-check {
  list-style: none;
  padding: 0px 0px 0px 25px !important; 
  margin-top: 10px;
}

.list-check>li {
  width: 100%;
  position: relative;
  padding: 10px;
}

.list-check>li:before {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: 100%;
  width: 20px;
  height: 20px;
  left: -24px;
  background-image: url(img/check-icon.svg);
  top: 9px;
}

.block-sp {
  clear: both;
  width: 100%;
  height: 60px;
  display: block;
}

.ccenter {
  display: flex;
  align-items: center;
}

.box-shadow {
  box-shadow: 0px 10px 50px rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 5px 30px 30px 30px !important;
}

@media only screen and (min-width:300px) and (max-width:767px) {
  .reverse {
    display: flex;
    flex-direction: column-reverse;
  }
}


/* Section and gradient bg  ============================================= */
.section-bg {
  background: #f9f9f9;
}

.gradient-blue {
  background-color: transparent;
  background-image: linear-gradient(180deg, #DBE4FE 0%, #FFFFFF 100%);
}

.gradient-green {
  background-color: transparent;
  background-image: linear-gradient(180deg, #DBFEF1 0%, #FFFFFF 50%);
}

.gradient-orange {
  background-color: transparent;
  background-image: linear-gradient(180deg, #FFEEDE 50%, #FFFFFF 100%);
}



/* Header ============================================= */
.signup {
  background: var(--primary-color);
  color: var(--white-color) !important;
  font-weight: normal !important;
  border-radius: 100px !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
  line-height: 19px;
  border: 1px solid var(--primary-color);
  transition: var(--transaction) !important;
}

.signup:hover {

  border: 1px solid var(--primary-color);
  background: var(--white-color) !important;
  color: var(--primary-color) !important;
}

.signup i {
  font-weight: normal !important;
  transition: none !important;
  padding-top: 2px;
}

.signup:hover i {}

@media only screen and (min-width:320px) and (max-width:991px) {
  .signup {
    border-radius: 0 !important;
    border: none !important;
  }

}

/* Headings ============================================= */

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: var(--website-fontfamily);
  margin: 1.25em 0 .25em;
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading-color);
}

h1, .h1 {
  margin-top: 0;
  font-size: 52px
}

h2, .h2 {
  font-size: 28px
}

h3, .h3 {
  font-size: 24px
}

h4, .h4 {
  font-size: 20px
}

h5, .h5 {
  font-size: 18px
}

h6, .h6 {
  font-size: 14px
}


.heading {
  text-align: center;
  padding-bottom: 30px;
}

.heading1 {
  font-size: 35px;
  font-weight: var(--heading-1Fontweight);
  color: var(--primary-color);
  margin: var(--heading-1Margin);
  line-height: 1.2em;
  margin-bottom: 0px;
  /*text-transform: uppercase;*/
}

.heading1sub {
  font-size: var(--heading-1FontSizeSub);
  padding: 0 10%;
}

.heading1Top {
  font-size: var(--heading-1FontSizeTop);
}

@media only screen and (max-width: 768px) {
  h1, .h1 {
    font-size: 30px
  }

  h2, .h2 {
    font-size: 24px
  }

  h3, .h3 {
    font-size: 22px
  }

  h4, .h4 {
    font-size: 18px
  }

  h5, .h5 {
    font-size: 16px
  }

  h6, .h6 {
    font-size: 14px
  }

  .heading1sub {
    font-size: var(--heading-1FontSizeSubM);
    padding: 0px;
  }

}

.page-content a {
  font-weight: 600;
  color: var(--primary-color);
}

@media only screen and (min-width:300px) and (max-width:640px) {

  .heading1 {
    font-size: 24px;
  }

}


ol.ol-list > li{
  counter-increment: item;
  margin-bottom: 5px;
}

ol.ol-list > li:before {
  margin-right: 10px;
  content: counter(item);
  background: #4caf50;
  border-radius: 100%;
  color: white;
  width: 24px;
  text-align: center;
  display: inline-block;
  height: 24px;
  line-height: normal;}

/* Product Box Css ============================================= */
.product-wrap .heading {
  padding-bottom: 0;
}

.grid-box .product-box {
  display: inline-table;
}

.product-box {
  width: 100%;
  background: var(--white-color);
  border-radius: var(--product-box-radius);
  -webkit-border-radius: var(--product-box-radius);
  -moz-border-radius: var(--product-box-radius);
  -khtml-border-radius: var(--product-box-radius);
  box-shadow: 0px 10px 50px rgba(52, 46, 173, 0.1);
  padding: 1rem 1.1rem 3rem 1.1rem;
  transition: all 400ms ease;
  position: relative;
  text-align: center;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;

}

a.product-box {
  color: transparent;
}

.product-box:hover {
  transform: scale(1.05, 1.05);
  z-index: 1;
  border: 1px solid var(--primary-color);

}


.product-box:after {
  content: "";
  border-radius: var(--product-box-radius);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: -1;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.product-box:hover:after {
  opacity: 1
}


.product-box .captionLine {
  width: 60%;
  display: inline-block;
  height: 7px;
  background: var(--primary-color);
  border-radius: 0 0 100px 100px;
  position: relative;
  top: -26px;

}

.product-box .title {
  font-size: 1.2rem;
  color: var(--secondary-color);
  text-align: left;
}


.product-box .sub-title {
  font-size: 0.9rem;
  color: var(--secondary-color);
  text-align: left;
  font-size: var(--body-fontsize);
}

.product-box .product-icon {
  display: block;
  border-radius: 100px;
  width: 160px;
  height: 160px;
  line-height: 160px;
  margin: auto;
  text-align: center;
  /* border: 1px solid #eee;*/
}

.product-box:hover .product-icon {
  /* border: 1px solid #eee;*/
}

.product-box .product-icon img {
  width: 100%;
}

.product-box .view-more {
  color: var(--secondary-color);
  font-size: 0.9rem;
  font-weight: 500;
  bottom: 30px;
  position: absolute;
  text-align: left;
  display: block;
}

.product-box:hover .view-more {
  color: var(--primary-color);
}

@media only screen and (min-width:300px) and (max-width:640px) {
  .swiper-container {
    padding: 30px 50px !important;
  }

  .swiper-widget {
    padding: 0;
  }

}

/* Product Box swiper ============================================= */
.swiper-widget {
  width: 100%;
}

.swiper-container {
  display: flex;
  overflow: hidden;
  width: 100%;
  padding: 45px 30px;
  height: auto;
  cursor: grab;
}

.swiper-slide {
  display: flex;
}

.swiper-container .product-box {
  height: 370px !important;
}

/* Home Banner Css ============================================= */
.bannerHome {
  padding-top: 0;
}

.bannerHome .banner-content {
  text-align: left;
}

.bannerHome .banner-img {
  text-align: right;
}

.bannerHome .heading {
  color: var(--primary-color);
  padding-bottom: 20px;
  font-size: 52px;
  text-align: left;
  padding-top: 0;
  margin-top: 15px;
}

.bannerHome strong {
  color: var(--secondary-color);
  font-size: 22px;
}

.bannerHome p {
  color: var(--font-color);
  line-height: normal;
  font-size: 18px;
  padding-bottom: 20px;
  font-weight: 400;
}

.bannerHome p strong, .bannerHome p b {
  display: block;
  padding-bottom: 15px;
}

/*.bannerHome .btn {padding: 0.2rem 1rem 0.2rem 0.8rem;}*/
.bannerHome .col-md-6:first-child {
  padding: 50px 5px;
}

.bannerHome .block-sp {
  display: none;
}

.bannerHome p strong,
.bannerHome p b {
  font-size: 24px;
  font-weight: normal;
}

.bannerHome p strong span,
.bannerHome p b span {
  font-weight: bold !important;
}

@media only screen and (min-width:300px) and (max-width:920px) {
  .bannerHome .heading {
    font-size: 32px;
    padding-bottom: 0;
  }

  .bannerHome strong {
    font-size: 18px;
  }

  .bannerHome p {
    font-size: 14px;
    padding-bottom: 0;
  }

  .bannerHome .col-md-6 {
    padding: 10px 0px;
  }

  body {
    padding-top: 50px;
  }

}

@media only screen and (min-width:300px) and (max-width:768px) {
  .bannerHome .heading, .bannerHome {
    text-align: center;
  }

  .bannerHome .row {
    display: flex;
    flex-direction: column-reverse;
  }

  .bannerHome .col-md-6 {
    padding: 0px 10px !important;
  }

  .bannerHome .block-sp {
    display: block;
  }

}

/* Inner page Banner Css ============================================= */

.inner-banner {
  display: block;
  margin-top: 30px;
  overflow: hidden;
  position: relative;
}

.inner-banner-wrap {
  background: var(--primary-color) url("img/lines.svg");
  ;
  color: var(--white-color);
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: var(--product-box-radius);
  margin: auto;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  background-size: cover;
  background-repeat: no-repeat;
}


.inner-banner-wrap .title {
  color: var(--white-color);
  margin-top: 30px;
}

.inner-banner-wrap p {
  padding: 20px 0px;
  line-height: normal;
}

.inner-banner-wrap .img {
  text-align: center;
  display: flex;
}

.inner-banner-wrap img {
  width: 65%;
  margin: auto;
  /*filter: grayscale(100%);*/
}

.inner-banner-wrap i {
  color: #000;
  font-size: 13em;
  position: absolute;
  opacity: 0.1;
  top: 7px;
  right: 5%;
}

.inner-banner-wrap p strong,
.inner-banner-wrap p b {
  font-size: 24px;
  font-weight: normal;
}

.inner-banner-wrap p strong span,
.inner-banner-wrap p b span {
  font-weight: bold !important;
}

.inner-banner-wrap .row {
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}

.inner-banner-wrap .banner-content {
  padding: 0px 00px 0px 70px;
}

@media only screen and (min-width:300px) and (max-width:800px) {
  .inner-banner-wrap {
    width: 100%;
  }

  .inner-banner-wrap * {
    text-align: center;
  }

  .inner-banner-wrap a {
    font-size: 14px;
  }

  .inner-banner-wrap .banner-content {
    padding: 0px 15px;
  }

  .inner-banner-wrap .title {
    margin-top: 15px;
  }

  .inner-banner-wrap .row {
    display: flex;
    flex-direction: column-reverse;
  }

}


/* Meet Our Teem ============================================= */

.team {
  background: var(--primary-color) url(img/lines.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.team h2 {
  color: var(--white-color);
}

.team_container {}

.team_member {

  background: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  padding: 2rem;
  transition: var(--transaction);
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);

}

.team_member:hover {
 
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transaction);

}

.team_member_img img {
  filter: saturate(0);
  border-radius: 15px;
}

.team_member:hover img {
  filter: saturate(1);
}

.team_member_info * {
  text-align: center;
  margin-top: 1.4rem;
}

.team_member_info h4 {
  color: var(--white-color);
  font-size: 18px;
  font-weight: 600;
}

.team_member_info p {
  color: var(--white-color);
  margin-top: 7px;
  opacity: .7;
}

.team_member_socials {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -100%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 1);
  border-radius: 1rem 0 0 1rem;
  box-shadow: -2rem 0 2rem rgba(0, 0, 0, 0.3);
  transition: var(--transaction);

}

.team_member_socials i {
  color: var(--primary-color);
}

.team_member:hover .team_member_socials {
  right: 0;
}

.team_member_socials a {
  padding: 1rem;
  color: var(--white-color);
}


/* Contact icon box ============================================= */

.content-box1 {
  width: 100%;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0px 10px 50px rgb(52 46 173 / 10%);
  border-radius: 12px;
  position: relative;
  padding: 10px 10px 10px 65px;
  min-height: 100px;
  transition: var(--transaction);
}

.content-box1 p {
  position: relative;
  margin-bottom: 10px;
  margin-top: 10px;
  width: 90%;
}

.content-box1 i {
  background: var(--primary-color);
  color: var(--white-color);
  position: absolute;
  left: 20px;
  top: 20px;
  box-shadow: 0px 10px 50px rgb(52 46 173 / 10%);
  border-radius: 8px;
  width: 32px;
  height: 32px;
  font-size: 22px;
  text-align: center;
  line-height: 32px;
  transition: var(--transaction);
}

.content-box1 .cap-line {
  background: var(--primary-color);
  position: absolute;
  right: 0px;
  display: block;
  width: 4px;
  border-radius: 100px;
  height: 50%;
  bottom: 25%;
}

.content-box1:hover {
  background: var(--primary-color);
  color: var(--white-color);
}

.content-box1:hover i {
  background: var(--white-color);
  color: var(--primary-color);
}

@media only screen and (min-width:300px) and (max-width:767px) {
  .content-box1 {
    min-height: auto;
  }

}

/* Left Right TAB ============================================= */
/* Tabs CSS begin */

.content-tab {
  position: relative;
}

.tab-details {
  line-height: 24px;
}

.tab-nav {
  height: auto;
  overflow: visible;
}

.tab-nav .tab-title {
  font-size: 1rem;
  margin-top: 0;
}

.tab-nav a {
  display: block;
  width: 100%;
  color: var(--font-color);
  display: table;
  margin-bottom: 15px;
  padding: 1rem 1.5rem 0;
  text-decoration: none;
  width: 100%;
}

.left-tab a {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  border-left: 3px solid transparent;
}

.right-tab a {
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  border-right: 3px solid transparent;
}

.left-tab a:hover, .right-tab a:hover {
  background: #ffffff
}

.left-tab .tab-nav a.current {
  border-left: 3px solid var(--primary-color);
  width: 100%;
  background: #F8F8F8
}

.right-tab .tab-nav a.current {
  border-right: 3px solid var(--primary-color);
  width: 100%;
  background: #F8F8F8
}

.left-tab .tab-nav a.current h4, .right-tab .tab-nav a.current h4 {
  color: var(--primary-color);
}

.tab-con {
  position: relative;
}

.content-tab .tab-con-item {
  text-align: center;
}

.content-tab .tab-con-item img, .content-tab .tab-con-item video {
  width: 70%;
  margin: auto;
}


.section-bg .left-tab a:hover,
.section-bg .left-tab a:hover,
.section-bg .left-tab .tab-nav a.current,
.section-bg .right-tab .tab-nav a.current {
  background: #F8F8F8;
}



.tab-details {
  display: none;
}

@media only screen and (min-width:300px) and (max-width:800px) {
  .tab-details, .tab-con-item {
    display: block;
    background: #f6f6f7;
  }

  .tab-con-item {
    display: block !important;
    opacity: 1 !important;
    min-width: 250px;
    padding: 20px;
    margin-right: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
  }

  .j-tab-nav {
    display: none;
  }

  .j-tab-con {
    display: flex;
    overflow-y: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
  }

  .content-tab .tab-con-item img {
    width: 100%;
  }

}


/* Industry Widget Css ============================================= */
.industry-widget {
  background: var(--primary-color) url(img/lines.svg);
  padding: 80px 0px 40px 0px;
  overflow: hidden;
}

.industry-widget * {
  color: var(--white-color);
}

.industry-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.industry-widget .heading {
  padding-bottom: 60px;
}

.industry-box {
  margin-bottom: 40px;
  text-align: center;
  display: block;
}

.industry-box .title {
  font-size: 20px;
  font-weight: 400;
  margin-top: 20px;
  width: 100%;
  text-align: center;
}

.industry-mobile-wrap {
  padding: 0px 5px;
}

.industry-widget .container .row>* {
  padding-left: 10px;
  padding-right: 10px;
}

.industry-widget .container .row .col-md-2 {
  width: 20%;
}

.industry-wrap img {
  background: #fff;
  border-radius: 44px;
  width: 87%;
}


@media only screen and (min-width:300px) and (max-width:920px) {
  .industry-widget {
    padding-top: 40px;
    padding-bottom: 0px;
  }

  .industry-box .title {
    font-size: 18px;
    margin-top: 10px;
  }

  .industry-mobile-wrap {
    overflow-y: auto;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
  }

  .industry-mobile-wrap div[class^=col-] {
    width: 175px !important;
  }

  .industry-wrap {
    flex-wrap: nowrap;
    display: contents;
  }

  .industry-box i img {}

  .industry-widget .heading {

    padding-bottom: 40px;
  }

  .industry-widget .heading1 {
    padding-left: 10px;
    padding-right: 10px;
  }

}

@media only screen and (min-width:300px) and (max-width:767px) {
  .industry-widget .container {
    padding: 0;
  }

  .industry-widget .container .row>* {
    padding-left: 5px;
    padding-right: 5px;
  }
}


@media only screen and (min-width:920px) and (max-width:1140) {
  .industry-box .title {
    font-size: 18px;
  }

}





/* Company statistics ============================================= */
.statistics-widget .heading1 {
  margin-bottom: 60px;
}

.statistics-widget .heading {
  padding-bottom: 0 !important;
}

.statistics {
  margin-bottom: 0px;
  /*border: 1px solid #eee;*/
  padding: 0px 0px 15px 0px;
  border-radius: 10px;
  transition: 0.3s;
  text-align: center;
}

.statistics:hover {}

.statistics i {
  font-style: normal;
  font-size: 42px;
  color: var(--primary-color);
}

.statistics .title {
  font-size: 26px;
  margin-top: 0px;
}

.statistics p {
  margin: 0px;
  line-height: normal;
}


/* News and Event ============================================= */
.news-box {}

.news-and-events {
  padding-top: 50px;
}

.news-and-events .heading {
  padding-bottom: 0;
}

.news-and-events .news-content {}

.news-and-events .content-left {
  padding-bottom: 30px;
}

.news-and-events .content-right {}

.news-and-events .content-left p {
  text-align: justify;
}

.news-and-events .content-left .title,
.news-and-events .content-left p {
  padding-bottom: 20px;
}

.news-and-events .news-infobox {
  background: #FFFFFF;
  box-shadow: 10px 15px 25px rgba(0, 0, 0, 0.1);
  border-radius: 26px;
  width: 320px;
  min-height: 300px;
  position: relative;
  margin: auto;
  padding-bottom: 1px;
}

.news-and-events .news-infobox span {
  display: block;
  display: flex;
}

.news-and-events .news-infobox .box-title {
  background: var(--primary-color);
  color: var(--white-color);
  height: 75px;
  border-radius: 0px 26px 26px 26px;
  display: flex;
  align-content: center;
  flex-wrap: wrap;
  font-size: 22px;
  font-weight: 600;
}

.news-and-events .news-infobox .box-title i {
  font-size: 34px;
  padding: 0 30px;
}

.news-and-events .news-infobox .box-img {
  height: 192px;
  background: #f9f9f9;
  border: 0px solid #fff;
  border-radius: 10px;
  overflow: hidden;
  right: 70px;
  margin-top: 10px;
  position: relative;
  filter: drop-shadow(10px 15px 25px rgba(0, 0, 0, 0.1));
  overflow: hidden;
}

.news-and-events .news-infobox .box-img img {
  width: auto;
  position: absolute;
}

.news-and-events .news-infobox .img-caption {
  background: var(--primary-color);
  color: var(--white-color);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  width: 85%;
  align-items: center;
  position: relative;
  right: -111px;
  padding-right: 50px;
  margin-top: 10px;
}

.news-and-events .news-infobox .caption-bottom {
  border: 1px solid #DCDCDC;
  box-sizing: border-box;
  border-radius: 42px;
  height: 42px;
  margin: 25px;
}

.news-and-events .news-infobox .caption-bottom:before {
  content: 'type text';
  padding-left: 20px;
  padding-top: 9px;
  color: #ddd;
}

@media only screen and (min-width:300px) and (max-width:767px) {
  .content-left {
    text-align: center;
  }

  .news-infobox {
    zoom: 0.75;
  }

  .news-and-events .block-sp {
    display: none;
  }
}

@media only screen and (min-width:768px) and (max-width:940px) {
  .news-infobox {
    zoom: 0.75;
  }
}



/* Call to Action ============================================= */
.call-action {
  display: block;
}

.call-action-wrap {
  background: var(--primary-color) url("img/lines.svg");
  ;
  color: var(--white-color);
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: var(--product-box-radius);
  margin: auto;
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
  background-size: cover;
  background-repeat: no-repeat;
}

.call-action-wrap .title {
  color: var(--white-color);
  margin-top: 30px;
}

.call-action-wrap p {
  width: 80%;
  padding-top: 20px;
  padding-bottom: 20px;
}

.call-action-wrap .img {
  text-align: center;
  display: flex;
}

.call-action-wrap .img img {
  max-height: 280px;
  margin: auto;
}

@media only screen and (min-width:300px) and (max-width:1024px) {
  .call-action-wrap {
    width: 100%;
  }

  .call-action-wrap * {
    text-align: center;
  }

  .call-action-wrap p {
    padding: 0px;
    width: 100%;
  }

  .call-action-wrap a {
    font-size: 14px;
  }

}




/* logo carousel ============================================= */
.carousel-widget {
  display: block;
  padding: 0;
}

.carousel-widget .heading {
  padding-bottom: 40px;
  line-height: normal;
}

.logo-carousel {
  width: 100%;
}

.carousel-widget button {
  display: none !important;
}

.carousel-widget .image-scroll img, .carousel-widget .logo-carousel img {
  padding: 1px;
  margin: 1px;
  border: 1px solid #fff;
  background: #fff;
  height: 60px;
  width: auto;
  object-fit: contain;
  width: 128px;
  margin: 00px 15px;
}

.carousel-widget .image-scroll .textwidget, .carousel-widget .logo-carousel .textwidget {
  display: flex
}

.logo-carousel span {
  height: 100px;
  display: inline-grid;
  border: 1px solid #eee;
  border-radius: 12px;
  align-content: center;
  margin: 10px;
  box-shadow: 0px 5px 20px rgba(52, 46, 173, 0.1);
  border-radius: 12px;
  background: #fff;
}

.carousel-widget .str_wrap {
  width: 100%;
  font-size: 12px;
  position: relative;
  -moz-user-select: none;
  -khtml-user-select: none;
  user-select: none;
  white-space: nowrap
}

.carousel-widget .str_move {
  white-space: nowrap;
  position: absolute;
  top: 0;
  left: 0;
  cursor: move
}

.carousel-widget .str_move_clone {
  display: inline-block;
  vertical-align: top;
  position: absolute;
  left: 100%;
  top: 0
}

.carousel-widget .str_vertical .str_move_clone {
  left: 0;
  top: 100%
}

.carousel-widget .str_down .str_move_clone {
  left: 0;
  bottom: 100%
}

.carousel-widget .str_down .str_move, .carousel-widget .str_vertical .str_move {
  white-space: normal;
  width: 100%
}

.carousel-widget .noStop .str_move, .carousel-widget .no_drag .str_move, .str_static .str_move {
  cursor: inherit
}

.carousel-widget .str_wrap img {
  max-width: none !important
}

.ourclient-logos2 .str_origin {
  margin-left: -100px;
}

.ourclient-logos2 .str_move_clone {
  margin-left: 0px;
}

@media only screen and (min-width:300px) and (max-width:700px) {
  .carousel-widget .heading {
    padding-bottom: 20px;
    line-height: normal;
  }
}

/* Client carousel ============================================= */
.ourclient-widget {
  background: #f9f9f9;
  overflow: hidden;
}


/* Pinnacle Integrations carousel ============================================= */
.integrations-widget {
  display: block;
  overflow: hidden;
  padding-bottom: 50px;
}

.integrations-widget .carousel-widget {
  padding-bottom: 0;
}

.integrations-app.logo-carousel img {
  width: 82%;
  margin: auto;
  padding: 5px;
}

.integrations-widget .logo-carousel span {
  width: 150px;
  height: 150px;
  overflow: hidden;
  border: none;
  box-shadow: 0px 10px 50px rgba(52, 46, 173, 0.1);
  border-radius: 44px;
}

.integrations-widget .carousel-widget .image-scroll img, .integrations-widget .carousel-widget .logo-carousel img {
  height: auto;
}


/* Clients testimonial ======================================== */

.clients-testimonial {}

.clients-testimonial div[class^=col-] {
  padding: 0px;
}

.clients-testimonial .testimonial-wrap {
  background: #fff;
  position: relative;
  border: 2px solid var(--primary-color);
  box-sizing: border-box;
  border-radius: 0px 29px 29px 0px;
  margin: auto;
  width: 100%;
}

.clients-testimonial .caption {
  background: var(--primary-color) url(img/lines.svg);
  height: calc(100% - -2px);
  border-radius: 0px 0px 109px 0px;
  margin-top: -1px;
  margin-left: 10px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  font-size: 35px;
  line-height: 42px;
  font-weight: 600;
  color: #fff;
  text-align: left;
}

.clients-testimonial .caption span {
  position: relative;
  line-height: normal;
  line-height: 42px !important;
  padding-left: 70px;
  width: 290px;
}

.clients-testimonial .caption img {
  position: absolute;
  left: 10px;
  top: -81px;
  z-index: 1;
}

.clients-testimonial .ct-content {
  margin: 50px 80px;
  text-align: justify;
  line-height: 24px;
  overflow: hidden;
}

.clients-testimonial .ct-logo {
  margin-bottom: 20px;
  margin-top: 30px;
  display: block;
}

.clients-testimonial .ct-logo {
  /*display: inline-block; border: 1px solid #ffe1b4; padding: 5px 10px;
border-radius: 8px; width: auto !important; background: #fff8f1; color: #dd2700; margin-top: 10px;*/
}

.clients-testimonial .ct-logo img {
  filter: grayscale(100%);
  height: 64px;
  border-radius: 6px;
  border: 1px solid #ffe1b4;
  padding: 5px 10px;
  display: block;
  background: border-box;
  float: left;
  margin-right: 20px;
}

.clients-testimonial .ct-name {
  display: block;
}

.clients-testimonial .ct-name h4 {
  color: var(--primary-color);
  text-transform: capitalize;
  margin: 0px 0px 5px 0px;
}

.clients-testimonial .ct-name span {
  display: block;
}

@media only screen and (min-width:300px) and (max-width:540px) {
  .clients-testimonial .ct-logo img {
    float: none !important;
    margin-right: 0px;
  }
}

@media only screen and (min-width:300px) and (max-width:1024px) {
  .clients-testimonial .testimonial-wrap {
    border-radius: 29px;
  }

  .clients-testimonial .testimonial-wrap {
    width: 100%;
  }

  .clients-testimonial .caption {
    width: 87%;
    margin-top: -2px;
  }

  .clients-testimonial .caption span {
    font-size: 24px;
    line-height: 27px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 82px;
  }

  .clients-testimonial .caption img {
    left: -3px;
    top: 12px;
    width: 77px;
  }

  .clients-testimonial .ct-content {
    margin: 10px 25px;
  }

}


/* Footer =============================================== */
footer {
  background: var(--footer-bg);
  background-image: url("img/footer-bg-shapes.svg");
  padding-top: 10px;
  background-position: 50% -200px;
  background-size: cover;
  font-weight: 300;
}

.footer-top-bg img{ fill: #11103E;}

.footer-content {
  padding: 50px 0 0 0;
}

footer a {
  color: var(--white-color);
}

footer .title-img {
  padding-bottom: 0 !important;
}

.footer-top-bg {
  position: relative;
  padding-top: 0;
  height: 35px;
  display: flex;
  align-items: flex-end;
}

.footer-top-bg svg {
  bottom: 0;
  width: 100%;
  height: 45px;
}

@media only screen and (min-width:300px) and (max-width:767px) {
  .footer-top-bg {
    padding-top: inherit;
  }

  .footer-top-bg svg {
    height: 20px;
  }
}

/* footer certificate */
footer .foo-certificate {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0 20px 0;
  margin: 30px 0 30px 0;
  line-height: normal;
  text-align: center;
}

footer .foo-certificate img {
  margin: 10px 10px;
  height: 118px;
  width: auto;
}

footer .foo-certificate .img-left {
  text-align: left;
}

footer .foo-certificate .img-right {
  text-align: right;
}

@media only screen and (min-width:300px) and (max-width:767px) {

  footer .foo-certificate .img-left,
  footer .foo-certificate .img-right {
    text-align: center;
  }

  footer .foo-certificate img {
    height: 85px;
  }
}

@media only screen and (min-width:768px) and (max-width:840px) {
  footer .foo-certificate img {
    height: 100px;
  }
}

/* footer Address */
.foo-address {}

.office-add .location-title {
  color: var(--white-color);
  font-size: 16px;
  font-weight: 500;
}

.office-add {
  color: var(--white-color);
  padding: 5px 20px;
  width: 100%;
  height: 200px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin: 0px 0px;
  border-radius: 10px;
  display: block;
}

.office-add:hover, .office-add:focus {
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transaction);
  color:#fff;
}

.foo-address p:last-child {
  display: none;
}

@media only screen and (min-width:300px) and (max-width:840px) {
  .foo-address {
    display: flex;
    flex-wrap: nowrap;
    overflow-y: auto;
	    padding: 5px 15px;
  }

  .foo-address .e-container--column .office-add {
    min-height: 170px;
  }

  .foo-address .e-container--column  {
    width: 50%;
  }

  .foo-address .col-12:last-child {
    display: none;
  }
}

@media only screen and (min-width:300px) and (max-width:640px) {
  .foo-address .e-container--column  {
    width: 72% !important;
  }

  .foo-address .col-6:last-child {
    display: none;
  }

}


/* footer Link widget */
.footer-widget {
  color: var(--white-color);
  display: inline-block;
  width: 100%;
}
.footer-widget a{ color:#fff;}

.footer-widget .title {
  font-size: 1rem;
  display: block;
  padding-bottom: 10px;
  font-weight: 600;
}

.footer-widget ul.fLink {
  width: 100%;
  display: inline-block;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-widget ul.fLink li a {
  display: block;
  color: var(--white-color);
}

.footer-widget ul.fLink li {
  float: left;
  width: 100%;
  padding-bottom: 6px;
}

/* footer social Links */
.elementor-social-icons-wrapper a {
border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0 !important;
    height: 42px !important;
    width: 42px !important;
    line-height: 42px !important;
    text-align: center;
    border-radius: 100px !important;
    font-size: 20px !important;
}

.elementor-social-icons-wrapper a:hover {
  color: #fff !important;
}

.elementor-social-icons-wrapper a[href*="facebook"]:hover {
  background: #4267B2 !important;
}

.elementor-social-icons-wrapper a[href*="twitter"]:hover {
  background: #00acee !important;
}

.elementor-social-icons-wrapper a[href*="youtube"]:hover {
  background: #FF0000 !important;
}

.elementor-social-icons-wrapper a[href*="instagram"]:hover {
  background: #8a3ab9 !important;
}

.elementor-social-icons-wrapper a[href*="linkedin"]:hover {
  background: #0077b5 !important;
}

.elementor-social-icons-wrapper a[href*="me"]:hover {
  background: #00c950 !important;
}

.elementor-social-icons-wrapper .elementor-social-icon svg{ width:100% !important;  margin: 11px auto !important;}


/* footer copyright text */
.copyright {
  color: #fff;
  font-size: 13px !important;
  font-weight: 300 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
 padding-bottom: 15px;
  margin-top: 30px;
}

.copyright .left-text {
  text-align: left;
}

.copyright .left-text span {
  display: block;
  padding: 10px 0;
}

.copyright .right-text {
  text-align: right;
}
.copyright  #menu-footer-bottom-links{ list-style:none !important; padding:0px; margin:0px; }
.copyright  #menu-footer-bottom-links li{ display:inline-block;}
.copyright  #menu-footer-bottom-links a {
  color: #fff !important;
  padding: 12px 9px !important;
  display: inline-block !important; 
  line-height:normal !important;
  font-weight:300 !important;
   font-size: 13px !important;
  
}
.copyright  #menu-footer-bottom-links { padding: 0px !important;  display: inline-block !important; width: 100% !important; line-height: normal !important;}
.copyright .elementskit-navbar-nav>li { position: relative; display: inline-block !important;}

.copyright svg path {
  fill: #fff;
}

@media only screen and (min-width:300px) and (max-width:767px) {

  .copyright .left-text,
  .copyright .right-text {
    text-align: center !important;
    width: 100%;

  }

  .copyright .right-text {
    text-align: center !important;
  }
}

/* Footer Mobile =============================================== */
@media (max-width : 767.99px) {
  .footer-content .footer-mwidget .title {
    cursor: pointer;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 10px;
  }

  .footer-content .last-box .footer-widget:nth-child(2) .last-title {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-content .last-box .footer-widget:nth-child(2).open .last-title {
    border-bottom: none !important;
  }

  .footer-content .last-box .footer-widget:nth-child(2).open {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-content .foo-certificate {
    border-top: none !important;
  }

  .footer-content ul {
    max-height: 0;
    display: none !important;
    transition: none;
  }

  .footer-content .footer-mwidget .title:after {
    content: '+';
    width: 25px;
    float: right;
    font-size: 22px;
    font-weight: 300;
  }

  .footer-content .footer-mwidget.open .title:after {
    content: "–";
    font-size: 22px;
    font-weight: 300;
  }

  .footer-content .footer-mwidget.open ul {
    height: auto;
    max-height: 500px;
    transition: none !important;
    display: block !important;
  }

  .footer-content .mt-4 {
    margin-top: 0 !important;
  }

}

/* Button ============================================= */

#pagetop-scroll {
  display: inline-block;
  background-color: var(--secondary-color);
  width: 40px;
  height: 35px;
  text-align: center;
  position: fixed;
  bottom: 100px;
  right: 0px;
  transition: background-color .3s, opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  border-radius: 50px 0px 0px 50px;
  padding: 0px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-right: none !important;

}

#pagetop-scroll i {
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 30px;
  color: #fff;
  margin-left: 5px;
}

#pagetop-scroll:hover {
  cursor: pointer;
  background-color: var(--primary-color);
}

#pagetop-scroll:active {
  background-color: var(--primary-color);
}

#pagetop-scroll.show {
  opacity: 1;
  visibility: visible;
}

/* Button ============================================= */

.grid-container {}

.grid-container .grid-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}

.grid-container article {
  position: relative;
  background: #fff;
  border-radius: var(--product-box-radius);
  transition: all 0.15s ease-in-out;
  overflow: hidden;
  box-shadow: 0px 5px 10px rgba(52, 46, 173, 0.07);
  margin-bottom: 20px;
}

.grid-container .article-content {
  padding: 20px 20px 10px 20px;
}

.grid-container article:hover {
  transform: scale(1.03);
  box-shadow: 0px 10px 30px rgba(52, 46, 173, 0.1);
  transition: var(--transaction);
  overflow: hidden;
}

.grid-container article a {
  color: var(--secondary-color);
  transition: var(--transaction);
}

.grid-container article:hover a {
  color: var(--primary-color)
}

.grid-container .pagination {
  text-align: center;
  margin: 60px 0 0 0;
}

.grid-container .pagination ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.grid-container .pagination li {
  display: inline-block;
  font-size: 1.1em;
  font-weight: 600;
  margin: 0 7px;
}

.grid-container .pagination li.current-page {
  color: #777;
}

.grid-container .pagination li a {
  color: #0079c1;
  text-decoration: none;
}

.grid-container .pagination li a:hover {
  color: #333;
}

.grid-container h1 {
  font-size: 3em;
  line-height: 1.2;
  letter-spacing: -1px;
  text-align: center;
  margin: 0 0 70px 0;
}

.grid-container h2 {
  font-size: 1.2em;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -.33px;
  margin: 0;
  padding: 0 0px;
}

.grid-container .post-date {
  display: block;
  font-size: 0.8em;
  color: #707070;
  margin: 15px 0 20px 0;
}

.grid-container p {
  line-height: 1;
  margin: 0 0 30px 0;
}

.grid-container a.more-link {
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 5px 10px;
  border-radius: var(--product-box-radius);
  transition: var(--transaction);
}

.grid-container article:hover a.more-link {
  color: var(--white-color);
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  padding: 5px 10px;
  border-radius: var(--product-box-radius);
}

.grid-container img {
  display: block;
  max-width: 100%;
  height: auto;
  width: auto\9;
  /* ie8 */
  margin: 0;
}

.grid-container figure {
  margin: 0;
  height: auto;
  overflow: hidden;
}

/* Zoom In #1 */
.grid-container article figure img {
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: var(--transaction);

}

.grid-container article:hover figure img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}


@media only screen and (max-width : 1024px) {
  .grid-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media only screen and (max-width : 768px) {
  .grid-container {
    grid-template-columns: 1fr;
  }

  .grid-container .pagination li {
    font-size: 1em;
    margin: 0 5px;
  }
}


/* From ============================================= */

.g-recaptcha-widget {
  position: relative;
  height: 60px;
}

#captcha {
  transform: scale(0.75);
  margin-left: -37px;
  margin-top: -10px;
  position: absolute;
}

#error {
  font-size: 13px;
  color: red;
}


label {
  display: inline-block;
  margin-bottom: 0.3rem;
}

.fright {
  float: right;
}

.fleft {
  float: left;
}

.red {
  color: red;
}

button {
  border-radius: 0;
}

button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #bababa !important;
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #bababa;
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #bababa;
}

input[type="radio"],
input[type="checkbox"] {
  box-sizing: border-box;
  padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  -webkit-appearance: listbox;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}



.form-control {
  display: block;
  width: 100%;
  height: calc(1.7em + 1rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: var(--font-size);
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}

.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
}

.form-control::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control[size], select.form-control[multiple] {
  height: auto;
}

textarea.form-control {
  height: auto;
}

.form-group {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row>.col,
.form-row>[class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

@media only screen and (max-width : 768px) {

  .form-row>.col,
  .form-row>[class*="col-"] {
    width: 100%;
  }

  .box-shadow {
    padding: 5px 20px;
  }
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.22rem;
  margin-left: -1.25rem;
}

.form-check-input:disabled~.form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #28a745;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.9);
  border-radius: 0.25rem;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #28a745;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center right calc(0.375em + 0.1875rem);
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #28a745;
  /* box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); */
}

.was-validated .form-control:valid~.valid-feedback,
.was-validated .form-control:valid~.valid-tooltip, .form-control.is-valid~.valid-feedback,
.form-control.is-valid~.valid-tooltip {
  display: block;
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #28a745;
  padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #28a745;
  /* box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); */
}

.was-validated .custom-select:valid~.valid-feedback,
.was-validated .custom-select:valid~.valid-tooltip, .custom-select.is-valid~.valid-feedback,
.custom-select.is-valid~.valid-tooltip {
  display: block;
}

.was-validated .form-control-file:valid~.valid-feedback,
.was-validated .form-control-file:valid~.valid-tooltip, .form-control-file.is-valid~.valid-feedback,
.form-control-file.is-valid~.valid-tooltip {
  display: block;
}

.was-validated .form-check-input:valid~.form-check-label, .form-check-input.is-valid~.form-check-label {
  color: #28a745;
}

.was-validated .form-check-input:valid~.valid-feedback,
.was-validated .form-check-input:valid~.valid-tooltip, .form-check-input.is-valid~.valid-feedback,
.form-check-input.is-valid~.valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid~.custom-control-label, .custom-control-input.is-valid~.custom-control-label {
  color: #28a745;
}

.was-validated .custom-control-input:valid~.custom-control-label::before, .custom-control-input.is-valid~.custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-control-input:valid~.valid-feedback,
.was-validated .custom-control-input:valid~.valid-tooltip, .custom-control-input.is-valid~.valid-feedback,
.custom-control-input.is-valid~.valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid:checked~.custom-control-label::before, .custom-control-input.is-valid:checked~.custom-control-label::before {
  border-color: #34ce57;
  background-color: #34ce57;
}

.was-validated .custom-control-input:valid:focus~.custom-control-label::before, .custom-control-input.is-valid:focus~.custom-control-label::before {
  /* box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); */
}

.was-validated .custom-control-input:valid:focus:not(:checked)~.custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked)~.custom-control-label::before {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid~.custom-file-label, .custom-file-input.is-valid~.custom-file-label {
  border-color: #28a745;
}

.was-validated .custom-file-input:valid~.valid-feedback,
.was-validated .custom-file-input:valid~.valid-tooltip, .custom-file-input.is-valid~.valid-feedback,
.custom-file-input.is-valid~.valid-tooltip {
  display: block;
}

.was-validated .custom-file-input:valid:focus~.custom-file-label, .custom-file-input.is-valid:focus~.custom-file-label {
  border-color: #28a745;
  /* box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); */
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 80%;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.25rem;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E");
  background-repeat: no-repeat;
  background-position: center right calc(0.375em + 0.1875rem);
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  /* box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); */
}

.was-validated .form-control:invalid~.invalid-feedback,
.was-validated .form-control:invalid~.invalid-tooltip, .form-control.is-invalid~.invalid-feedback,
.form-control.is-invalid~.invalid-tooltip {
  display: block;
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc((1em + 0.75rem) * 3 / 4 + 1.75rem);
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px, url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23dc3545' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23dc3545' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E") #fff no-repeat center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #dc3545;
  /* box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); */
}

.was-validated .custom-select:invalid~.invalid-feedback,
.was-validated .custom-select:invalid~.invalid-tooltip, .custom-select.is-invalid~.invalid-feedback,
.custom-select.is-invalid~.invalid-tooltip {
  display: block;
}

.was-validated .form-control-file:invalid~.invalid-feedback,
.was-validated .form-control-file:invalid~.invalid-tooltip, .form-control-file.is-invalid~.invalid-feedback,
.form-control-file.is-invalid~.invalid-tooltip {
  display: block;
}

.was-validated .form-check-input:invalid~.form-check-label, .form-check-input.is-invalid~.form-check-label {
  color: #dc3545;
}

.was-validated .form-check-input:invalid~.invalid-feedback,
.was-validated .form-check-input:invalid~.invalid-tooltip, .form-check-input.is-invalid~.invalid-feedback,
.form-check-input.is-invalid~.invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid~.custom-control-label, .custom-control-input.is-invalid~.custom-control-label {
  color: #dc3545;
}

.was-validated .custom-control-input:invalid~.custom-control-label::before, .custom-control-input.is-invalid~.custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-control-input:invalid~.invalid-feedback,
.was-validated .custom-control-input:invalid~.invalid-tooltip, .custom-control-input.is-invalid~.invalid-feedback,
.custom-control-input.is-invalid~.invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid:checked~.custom-control-label::before, .custom-control-input.is-invalid:checked~.custom-control-label::before {
  border-color: #e4606d;
  background-color: #e4606d;
}

.was-validated .custom-control-input:invalid:focus~.custom-control-label::before, .custom-control-input.is-invalid:focus~.custom-control-label::before {
  /* box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); */
}

.was-validated .custom-control-input:invalid:focus:not(:checked)~.custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked)~.custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid~.custom-file-label, .custom-file-input.is-invalid~.custom-file-label {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid~.invalid-feedback,
.was-validated .custom-file-input:invalid~.invalid-tooltip, .custom-file-input.is-invalid~.invalid-feedback,
.custom-file-input.is-invalid~.invalid-tooltip {
  display: block;
}

.was-validated .custom-file-input:invalid:focus~.custom-file-label, .custom-file-input.is-invalid:focus~.custom-file-label {
  border-color: #dc3545;
  /* box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); */
}

.form-inline {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-align: center;
  align-items: center;
}

.form-inline .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  .form-inline label {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 0;
  }

  .form-inline .form-group {
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 0;
  }

  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }

  .form-inline .form-control-plaintext {
    display: inline-block;
  }

  .form-inline .input-group,
  .form-inline .custom-select {
    width: auto;
  }

  .form-inline .form-check {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }

  .form-inline .form-check-input {
    position: relative;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }

  .form-inline .custom-control {
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .form-inline .custom-control-label {
    margin-bottom: 0;
  }
}




/* Button ============================================= */
.btn {
  margin-right: 0.07rem;
  margin-left: 0.07rem;
  margin-bottom: 0.5rem;
  display: inline-block;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid transparent;
  padding: 0.5rem 1rem 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 100px;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  cursor: pointer;
  text-transform: none;
  overflow: visible;
  outline: none;
  transition: var(--transaction);
}

.btn:hover, .btn:focus {
  text-decoration: none;
}

.btn-primary {
  color: #fff !important;
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.btn-primary:hover {
  color: var(--primary-color) !important;
  background-color: var(--white-color) !important;
  border-color: var(--primary-color) !important;
}

.btn-primary:hover i {
  border: 1px solid var(--primary-color) !important;
  background: var(--primary-color) !important;
  color: var(--white-color) !important;
}

.btn-primary:focus {
  box-shadow: none;
}

.btn-secondary {
  color: #fff;
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-secondary:hover {
  color: var(--secondary-color);
  background-color: var(--white-color);
  border-color: var(--secondary-color-hover);
}

.btn-secondary:hover i {
  border: 1px solid var(--secondary-color);
  background: var(--secondary-color);
  color: var(--white-color);
}


.btn-secondary:focus {
  box-shadow: none;
}

.btn-success {
  color: #fff;
  background-color: var(--success-color);
  border-color: var(--success-color);
}

.btn-success:hover {
  color: var(--success-color);
  background-color: var(--white-color);
  border-color: var(--success-color-hover);
}

.btn-success:hover i {
  border: 1px solid var(--success-color);
  background: var(--success-color);
  color: var(--white-color);
}


.btn-success:focus {
  box-shadow: none;
}

.btn-danger {
  color: #fff;
  background-color: var(--danger-color);
  border-color: var(--danger-color);
}

.btn-danger:hover {
  color: var(--danger-color);
  background-color: var(--white-color);
  border-color: var(--danger-color-hover);
}

.btn-danger:hover i {
  border: 1px solid var(--danger-color);
  background: var(--danger-color);
  color: var(--white-color);
}


.btn-danger:focus {
  box-shadow: none;
}

.btn-warning {
  color: #212529;
  background-color: var(--warning-color);
  border-color: var(--warning-color);
}

.btn-warning:hover {
  color: var(--warning-color);
  background-color: var(--white-color);
  border-color: var(--warning-color-hover);
}

.btn-warning:hover i {
  border: 1px solid var(--warning-color);
  background: var(--warning-color);
  color: var(--white-color);
}


.btn-warning:focus {
  box-shadow: none;
}

.btn-info {
  color: #fff;
  background-color: var(--info-color);
  border-color: var(--info-color);
}

.btn-info:hover {
  color: var(--info-color);
  background-color: var(--white-color);
  border-color: var(--info-color-hover);
}

.btn-info:hover i {
  border: 1px solid var(--info-color);
  background: var(--info-color);
  color: var(--white-color);
}


.btn-info:focus {
  box-shadow: none;
}

.btn-light {
  color: var(--primary-color);
  background-color: var(--light-color);
  border-color: var(--light-color);
  transition: var(--transaction);
}

.btn-light i {
  border: 1px solid var(--primary-color) !important;
  transition: var(--transaction);
}

.btn-light:hover i {
  border: 1px solid var(--white-color) !important;
  color: var(--white-color);
}


.btn-light:hover {
  color: var(--white-color);
  border-color: var(--white-color);
  background-color: transparent;
}

.btn-light:focus {
  box-shadow: none;
}

.btn-dark {
  color: #fff;
  background-color: var(--dark-color);
  border-color: var(--dark-color);
}

.btn-dark:hover {
  color: var(--dark-color);
  background-color: var(--white-color);
  border-color: var(--dark-color-hover);
}

.btn-dark:hover i {
  border: 1px solid var(--dark-color);
  background: var(--dark-color);
  color: var(--white-color);
}

.btn-dark:focus {
  box-shadow: none;
}

.btn-link {
  font-weight: 400;
  color: var(--primary-color);
  background-color: transparent;
  border-color: transparent;
}

.btn-dark:hover i {
  border: 1px solid var(--dark-color);
}

.btn-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
  background-color: transparent;
  border-color: transparent;
}

.btn i {
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin-left: -9px !important;
  display: inline-block;
  border-radius: 100px;
  text-align: center;
  margin: 0 5px 0 0;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.1);
  vertical-align: initial;
  height: 32px;
  line-height: 31px;
  width: 32px;
}


/* link btn */
.link-btn {
  position: relative;
  font-size: 16px;
  color: #6d6e75;
  font-weight: 500;
  padding-right: 10px;
  display: inline-block;
}

.link-btn i {
  font-size: 18px !important;
  position: absolute;
  top: 11px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
}

.link-btn i:first-child {
  right: 10%;
  visibility: hidden;
  opacity: 0;
}

.link-btn i:last-child {
  right: 0;
}

.link-btn:hover {
  color: #2b4eff;
}

.link-btn:hover i:first-child {
  right: 0;
  visibility: visible;
  opacity: 1;
}

.link-btn:hover i:last-child {
  right: -10%;
  visibility: hidden;
  opacity: 0;
}

.link-btn.link-prev {
  padding-right: 0;
  padding-left: 21px;
}

.link-btn.link-prev i:first-child {
  left: 10%;
  right: auto;
}

.link-btn.link-prev i:last-child {
  left: 0;
  right: auto;
}

.link-btn.link-prev:hover i:first-child {
  left: 0%;
  right: auto;
}

.link-btn.link-prev:hover i:last-child {
  left: -10%;
  right: auto;
}

/* Sidebar Widget ============================================= */
fieldset.sidebar-widget {
  border: 1px solid rgb(204, 204, 204, 0.3) !important;
  padding: 2em 1em 1em 1em !important;
  margin: 0 0 0 0 !important;
  -webkit-box-shadow: 10px #000;
  box-shadow: 10px #000;
  border-radius: 15px 3px 15px 15px;
  margin: 0 0 50px 30px !important;
  box-shadow: 0px 5px 10px rgb(52 46 173 / 7%);
}

legend.widget-title {
  font-size: 1.2em !important;
  font-weight: bold !important;
  text-align: left !important;
  width: auto;
  padding: 5px 10px;
  margin: 0;
  border-bottom: none;
  margin-top: -47px;
  background: #fff;
  float: right;
  margin-right: 10px;
  border: 1px solid rgb(204, 204, 204, 0.3) !important;
  border-radius: 5px;
}

fieldset.sidebar-widget h3 {
  margin-top: 0;
  text-align: center;
}

fieldset.sidebar-widget p {
  margin-top: 0;
  text-align: center;
}


/* Emoji Feedback ============================================= */
.emoji-feedback {
  text-align: center;
}

.emoji-feedback p {
  color: #666;
}

.sharethis-inline-reaction-buttons {
  border-radius: 15px;
  margin-bottom: 20px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 10px 0px 0px 0px;
}

#st-1 .st-btn .st-text {
  font-size: 8px !important;
  font-family: Arial, Helvetica, sans-serif;
}

/* Share buttons ============================================= */
.share-buttons {}

.share-buttons #st-2.st-justified {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-content: center;
  align-items: stretch;
}

.share-buttons #st-2.st-has-labels .st-btn.st-remove-label {
  margin-bottom: 5px;
}

.share-buttons #st-2.st-has-labels .st-btn.st-remove-label>span {
  display: inline-block;
}

.share-buttons #st-2.st-justified {
  display: block;
  text-align: center;
}

#st-2.st-justified .st-btn {
  margin: 2px;
  width: 49%;
  float: left;
}


@media only screen and (min-width:300px) and (max-width:800px) {
  fieldset.sidebar-widget {
    margin: 0 0 50px 0 !important;
  }
}

#st-2.st-justified .st-btn {
  width: 100%;
  float: left;
  margin: 2px 0 2px 0;
}

/* Helpdesk ============================================= */

.helpdesk .title{
  font-size: 22px;
  padding: 0 0 10px;
  margin: 0 0 30px 0;
  border-bottom: 1px solid #e6e6e6 !important;
  display: block;
  width: 100%;
}

.hd-box {
  width: 100%;
  display: flex;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid #f3f3fa;
  color:var(--font-color);
  border-radius: 12px;
  position: relative;
  padding: 10px 10px 10px 100px;
  min-height: 100px;
  transition: var(--transaction);

}
.hd-box p {
  position: relative;
  margin-bottom: 10px;
  margin-top: 10px;
  width: 90%;
}
.hd-box strong, .hd-box b{ display: block; padding-bottom:5px;}

.hd-box i {
  background: var(--primary-color);
  color: var(--white-color);
  position: absolute;
  left: 20px;
  top: 20px;
  border-radius: 8px;
  width:60px;
  height:60px;
  font-size: 42px;
  text-align: center;
  line-height: 60px;
  transition: var(--transaction);
}

.hd-box .cap-line {
  position: absolute;
  right: 0px;
  display: block;
  width: 4px;
  border-radius: 100px;
  height: 50%;
  bottom: 25%;
}

.hd-box:hover {
  background:#f3f3fa;
}

 #hd-list{ list-style: none; margin: 0 !important; padding: 0 !important; } 
 #hd-list a { padding: 10px 20px !important; margin-bottom: 10px !important;}


@media only screen and (min-width:300px) and (max-width:767px) {
  .hd-box {
    min-height: auto;
  }

}

/* Helpdesk details  ============================================= */
.helpdesk section{ padding-top:70px;}

/* 3. ScrollSpy active styles (see JS tab for activation) */
.section-nav ol{ list-style: none; margin: 0; padding: 0 15px 20px 15px;}
.section-nav ol > li > a{ border-left: 4px solid #ccc; margin-bottom:5px; padding: 5px 5px 5px 10px;}
.section-nav li.active > a {
	color: var(--success-color);
	font-weight: 500; 
}
.section-nav button {  
  margin: auto;
  width: 100%;
  left: 0;
  border-radius:10px;}
.section-nav ol > li.active > a {border-left: 4px solid var(--success-color);}
.section-nav{ position: relative;}
.section-nav a {
	text-decoration: none;
	display: block;
	padding: .125rem 0;
	color: var(--font-color);
	transition: all 50ms ease-in-out; 
  text-align: left;
}
.section-nav fieldset { margin: 0px !important; left: 0 !important; padding-bottom: 50px;}


/* MegaMenu  =============================================== */
.ekit-template-content-markup{
    background: var(--mainmenu);
    position: fixed;
    width: 100%;
    margin: auto;
    top: 0;
    right: 0;
    left: 0;
    z-index: 99;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0.125rem 0.3rem -0.0625rem rgb(0 0 0 / 3%), 0 0.275rem 0.75rem -0.0625rem rgb(0 0 0 / 6%) !important;
    border-bottom: 1px solid #f6f6f7 !important;
    transition: height 0.2s;
    transition: background 0.2s;
    transition: box-shadow 0.2s;
}

.elementskit-megamenu-panel, .elementskit-dropdown{
    box-shadow: 0 0.75rem 1rem rgb(189 197 209 / 30%) !important;
    border-radius: 8px  !important;
    border-top: 0.1875rem solid  var(--primary-color)  !important;
	padding:20px;
	background:#fff;
}
.elementskit-submenu-panel{ padding:0px !important;}
.elementskit-navbar-nav-default .elementskit-dropdown{
	color: #343a40;
    padding: 10px 20px;
    border-bottom: 1px solid #f6f6f6;
	background-color: #fff !important;
	border-radius: 8px !important; 
	}
	

.elementskit-submenu-panel > li > a{border-bottom: 1px solid #f6f6f6 !important;}
.elementskit-submenu-panel > li > a:hover{color: #000;background-color:rgb(246, 246, 247)!important;}
.elementskit-submenu-panel > li:first-child > a {border-top-left-radius: 8px !important; border-top-right-radius: 8px !important;}
.elementskit-submenu-panel > li:last-child > a {border-bottom-left-radius: 8px !important; border-bottom-right-radius: 8px !important;}
.elementskit-navbar-nav-default .elementskit-dropdown-has>a .elementskit-submenu-indicator{ font-size:16px !important; margin-top:5px;}
.elementskit-navbar-nav-default .elementskit-dropdown{ border-right: none !important; border-left: none !important; border-bottom:none !important;}


.elementor-column .elementor-widget-wrap {
	align-items: center;
}
.elementor-column.elementor-element[data-element_type="column"] > .elementor-widget-wrap.elementor-element-populated {
	align-content: center;
	align-items: center;
}
.elementor-widget-wrap > .elementor-widget:not(.elementor-widget__width-auto):not(.elementor-widget__width-initial):not(:last-child):not(.elementor-absolute) {
	margin-bottom: 10px;
}
.elementor-element-populated {
	padding: 0px 0px 0px 0px;
}
.hfe-site-logo-container, .hfe-caption-width figcaption {
	text-align: center;
}
.hfe-site-logo-container .hfe-site-logo-img {
	border-style: none;
}
.widget-image-caption {
	margin-top: 0px;
	margin-bottom: 0px;
}
.elementor-column .elementor-widget-wrap {
	align-items: center;
}
.elementor-column.elementor-element[data-element_type="column"] > .elementor-widget-wrap.elementor-element-populated {
	align-content: center;
	align-items: center;
}
.elementor-element-populated {
	padding: 0px 0px 0px 0px;
}
.elementskit-menu-container {
	height: 80px;
	border-radius: 0px 0px 0px 0px;
}
.elementskit-navbar-nav > li > a {
	color: #000000;
	padding: 0px 15px 0px 15px;
}
.elementskit-navbar-nav > li > a:hover {
	color: var(--primary-color) !important;
}
.elementskit-navbar-nav > li > a:focus {
	color: var(--primary-color) !important;
}
.elementskit-navbar-nav > li > a:active {
	color: var(--primary-color)!important;
}
.elementskit-navbar-nav > li:hover > a {
	color: var(--primary-color) !important;
}
.elementskit-navbar-nav > li:hover > a .elementskit-submenu-indicator {
	color:var(--primary-color) !important;
}
.elementskit-navbar-nav > li > a:hover .elementskit-submenu-indicator {
	color: var(--primary-color) !important;
}
.elementskit-navbar-nav > li > a:focus .elementskit-submenu-indicator {
	color: var(--primary-color) !important;
}
.elementskit-navbar-nav > li > a:active .elementskit-submenu-indicator {
	color: var(--primary-color) !important;
}
.elementskit-navbar-nav > li.current-menu-item > a {
	color: var(--primary-color) !important;
}
.elementskit-navbar-nav > li.current-menu-ancestor > a {
	color: var(--primary-color) !important;
}
.elementskit-navbar-nav > li.current-menu-ancestor > a .elementskit-submenu-indicator {
	color: var(--primary-color) !important;
}
.elementskit-navbar-nav > li > a .elementskit-submenu-indicator {
	color: #101010;
}
.elementskit-navbar-nav .elementskit-submenu-panel > li > a {
	padding: 15px 15px 15px 15px;
	color: #000000;
}
.elementskit-navbar-nav .elementskit-submenu-panel > li > a:hover {
	color: var(--primary-color);
}
.elementskit-navbar-nav .elementskit-submenu-panel > li > a:focus {
	color: var(--primary-color);
}
.elementskit-navbar-nav .elementskit-submenu-panel > li > a:active {
	color: var(--primary-color);
}
.elementskit-navbar-nav .elementskit-submenu-panel > li:hover > a {
	color: var(--primary-color);
}
.elementskit-navbar-nav .elementskit-submenu-panel > li.current-menu-item > a {
	color:#000 !important;
}
.elementskit-submenu-panel {
	padding: 15px 0px 15px 0px;
}
.elementskit-navbar-nav .elementskit-submenu-panel {
	border-radius: 0px 0px 0px 0px;
	min-width: 220px;
}
.elementskit-menu-hamburger {
	float: right;
}
.elementskit-menu-hamburger .elementskit-menu-hamburger-icon {
	background-color: rgba(0, 0, 0, 0.5);
}
.elementskit-menu-hamburger > .ekit-menu-icon {
	color: rgba(0, 0, 0, 0.5);
}
.elementskit-menu-hamburger:hover .elementskit-menu-hamburger-icon {
	background-color: rgba(0, 0, 0, 0.5);
}
.elementskit-menu-hamburger:hover > .ekit-menu-icon {
	color: rgba(0, 0, 0, 0.5);
}
.elementskit-menu-close {
	color: rgba(51, 51, 51, 1);
}
.elementskit-menu-close:hover {
	color: rgba(0, 0, 0, 0.5);
}
@media(min-width:768px) { {
 width: 10%;
}
}
@media(max-width:1024px) {
.elementskit-nav-identity-panel {
	padding: 10px 0px 10px 0px;
}
.elementskit-menu-container {
	max-width: 350px;
	border-radius: 0px 0px 0px 0px;
}
.elementskit-navbar-nav > li > a {
	color: #000000;
	padding: 10px 15px 10px 15px;
}
.elementskit-navbar-nav .elementskit-submenu-panel > li > a {
	padding: 15px 15px 15px 15px;
}
.elementskit-navbar-nav .elementskit-submenu-panel {
	border-radius: 0px 0px 0px 0px;
}
.elementskit-menu-hamburger {
	padding: 8px 8px 8px 8px;
	width: 45px;
	border-radius: 3px;
}
.elementskit-menu-close {
	padding: 8px 8px 8px 8px;
	margin: 12px 12px 12px 12px;
	width: 45px;
	border-radius: 3px;
}
.elementskit-nav-logo > img {
	max-width: 160px;
	max-height: 60px;
}
.elementskit-nav-logo {
	margin: 5px 0px 5px 0px;
	padding: 5px 5px 5px 5px;
}
}
@media(max-width:767px) {
.elementskit-nav-logo > img {
	max-width: 120px;
	max-height: 50px;
}
}

/* 09-03-2023 */
.elementor-widget-video .elementor-video{aspect-ratio: auto !important; object-fit: contain !important; -o-object-fit: contain !important;}
.elementor-widget-video .elementor-wrapper{aspect-ratio: auto !important;}