/** Newsletter **/

.form-group {
  margin-bottom: 1rem;
}
.custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5rem;
}
.form-control:focus, .form-control:active {
  outline: none !important;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1px solid transparent;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  -ms-transform: translate(0, -50px);
  transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
      -webkit-transition: none;
      -o-transition: none;
      transition: none;
  }
}

.modal.show .modal-dialog {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.modal-dialog-scrollable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.modal-footer> :not(:first-child) {
  margin-left: .25rem;
}

.modal-footer> :not(:last-child) {
  margin-right: .25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
      max-width: 500px;
      margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
      max-height: calc(100% - 3.5rem);
  }

  .modal-dialog-scrollable .modal-content {
      max-height: calc(100vh - 3.5rem);
  }

  .modal-dialog-centered {
      min-height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered::before {
      height: calc(100vh - 3.5rem);
  }

  .modal-sm {
      max-width: 300px;
  }
}

@media (min-width: 992px) {

.modal-lg,
  .modal-xl {
      max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
      max-width: 1140px;
  }
}

.modal-dialog {
  max-width: 900px;
}

.modal-content {
  border: none;
  position: relative;
  padding: 0 !important;
  font-size: 14px;
  border-radius: 0;
  -webkit-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
  box-shadow: 0px 10px 34px -15px rgba(0, 0, 0, 0.24);
}

.modal-content .modal-header {
  padding: 0;
  border: none;
}

.modal-content button.close {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  margin: 0;
  width: 40px;
  height: 40px;
  z-index: 1;
  text-shadow: none;
  background: rgba(0, 0, 0, 0.1);
  color: #fff;
}

.modal-content .modal-body {
  border: none;
  position: relative;
  z-index: 0;
  color: rgba(255, 255, 255, 0.8);
}

.modal-content .modal-body.color-1 {
  background: #00bdc0;
}

.modal-content .modal-body.color-2 {
  background: #1b2a49;
}

.modal-content .modal-body .icon {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  font-size: 30px;
  margin: 0 auto;
  margin-bottom: 10px;
}

@media (max-width: 767.98px) {

}

.modal-content .modal-body .icon-2 {
  position: absolute;
  top: 0;
  left: 20px;
  font-size: 30px;
}

.modal-content .modal-body a:hover {
  color: #00bdc0;
}

.modal-content .label {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
}

.modal-content .form-control {
  background: transparent;
  border: none;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.7) !important;
  padding: 0;
  height: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-content .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(255, 255, 255, 0.2) !important;
}

.modal-content .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(255, 255, 255, 0.2) !important;
}

.modal-content .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(255, 255, 255, 0.2) !important;
}

.modal-content .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(255, 255, 255, 0.2) !important;
}

.modal-content .btn-primary {
  background: #00bdc0 !important;
  height: 52px;
}

.modal-footer-social {
  margin-bottom: 1rem;
}

.modal-footer-social li {
  list-style: none;
  margin: 0 10px 0 0;
  display: inline-block;
}
.modal-footer-social li a {
  height: 50px;
  width: 50px;
  display: block;
  border-radius: 50%;
  position: relative;
  border: 1px solid #fff;
}
.modal-footer-social li a span {
  color: #ffffff;
  position: absolute;
  font-size: 20px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.modal-footer-social li a:hover {
  background-color: #ffffff;
}
.modal-footer-social li a:hover span {
  color: #005416;
}

/** Header **/

.header-top {
  /* position: relative;
  background: #232323;
  padding: 11px 0; */
  width: 100%;
  float: left;
  /* padding: 7px 0; */
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.header-top .top-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top .top-inner .top-left {
  position: relative;
  display: flex;
  align-items: center;
}

.header-top .top-inner .top-left p {
  /* color: #A7A7A7; */
  color: #ffffff;
  margin-right: 60px;
  margin-bottom: 0;
}

.header-top .top-inner .top-left .social-links li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 30px;
}

.header-top .top-inner .top-left .social-links li:last-child {
  margin: 0px !important;
}

.header-top .top-inner .top-left .social-links li a {
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: #fff;
}

.header-top .top-inner .info {
  position: relative;
  display: flex;
  align-items: center;
}

.header-top .top-inner .info li {
  position: relative;
  display: inline-block;
  margin-right: 40px;
  /* color: #A7A7A7; */
  color: #ffffff;
  padding-left: 27px;
}

.header-top .top-inner .info li img,
.header-top .top-inner .whatsapp > img,
.mobile-menu .menu-box .social-links .whatsapp > img {
  height: 35px;
}

.header-top .top-inner .info li:last-child {
  margin: 0px !important;
  padding-left: 0;
}

.header-top .top-inner .info li a {
  display: inline-block;
  /* color: #A7A7A7; */
  color: #ffffff;
}

.header-top .top-inner .info li i {
  position: absolute;
  left: 0px;
  top: 4px;
  font-size: 20px;
}

.header-top .top-inner .info li:last-child i {
  font-size: 16px;
}

.header-style.main-header .outer-box {
  /* padding-left: 70px; */
}

.header-style.main-header .header-lower .logo-box,
.header-style.main-header .sticky-header .logo-box {
  padding: 0px;
}

.main-header .sticky-header {
  display: none;
}

.main-header.fixed-header .sticky-header {
  display: inline-block;
  z-index: 999;
  background: rgba(0,0,0,0.9);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-header .sticky-header .logo-box .logo {
  max-width: 90px;
}

.main-header .sticky-header .theme-btn-one:before {
  background-color: #fff;
}

.main-header .sticky-header .theme-btn-one:hover {
  color: #000 !important;
}

@media only screen and (max-width: 1499px){

  .header-top .top-inner .top-left p:before{
    display: none;
  }

  .header-top .top-inner .info li {
    padding-left: 25px;
    margin-right: 15px;
  }

}

@media only screen and (max-width: 991px){

  .header-top .top-inner .top-left {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .header-top .top-right{
    display: none;
  }

}

@media only screen and (max-width: 767px){

  .header-top .top-inner .top-left p{
    margin-right: 0px;
  }

  .header-top .top-inner .top-left .social-links li{
    float: none;
  }

  .main-header .sticky-header {
    display: block;
  }

}

@media only screen and (max-width: 499px){

  .header-style.main-header .outer-box{
    padding-right: 15px;
    padding-left: 15px;
  }

}


/** main-header **/

.main-header {
  position: relative;
  left: 0px;
  top: 0px;
  right: 0px;
  z-index: 999;
  width: 100%;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

@media only screen and (max-width: 767px) {

  .sticky-header{
    position:fixed;
    opacity:0;
    visibility:hidden;
    left:0px;
    top:0px;
    width:100%;
    z-index:0;
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    transition:all 500ms ease;
    -moz-transition:all 500ms ease;
    -webkit-transition:all 500ms ease;
    -ms-transition:all 500ms ease;
    -o-transition:all 500ms ease;
  }

  .fixed-header .sticky-header{
    z-index:999;
    opacity:1;
    visibility:visible;
    -ms-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -op-animation-name: fadeInDown;
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
    -ms-animation-duration: 500ms;
    -moz-animation-duration: 500ms;
    -op-animation-duration: 500ms;
    -webkit-animation-duration: 500ms;
    animation-duration: 500ms;
    -ms-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
    -op-animation-timing-function: linear;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -ms-animation-iteration-count: 1;
    -moz-animation-iteration-count: 1;
    -op-animation-iteration-count: 1;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
  }

}

/** header-lower **/

.header-lower {
  position: relative;
  width: 100%;
}

.main-header .outer-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 0px 70px 0px 0px; */
}

.main-header .header-lower .logo-box {
  position: relative;
  padding: 23px 230px 28px 70px;
  /* top: -4px; */
  z-index: 1;
}

.main-header .logo-box .logo {
  /* max-width: 251px; */
  max-width: 120px;
  width: 100%;
}

.main-header .logo-box .logo img {
  width: 100%;
  padding: 10px;
}

@media only screen and (max-width: 767px){

  .main-header .outer-box{
    display: flex;
    padding-right: 0px;
  }

  /* .main-header .logo-box .logo{
    margin: 0 auto;
  } */

}


/** main-menu **/

.main-menu {
  float: left;
}

.main-menu .navbar-collapse {
  padding: 0px;
  display: block !important;
}

.main-menu .navigation {
  margin: 0px;
}

.main-menu .navigation>li {
  /* position: inherit; */
  float: left;
  z-index: 2;
  margin: 0px 15px;
  /* margin: 0 !important; */
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-menu .navigation>li:last-child {
  margin-right: 0 !important;
  margin-left: 10px !important;
}

.main-menu .navigation>li:first-child {
  margin-left: 0 !important;
}

.main-menu .navigation>li>a {
  position: relative;
  display: block;
  text-align: center;
  font-size: 16px;
  line-height: 30px;
  padding: 10px 0px;
  font-weight: 400;
  font-family: 'Poppins', sans-serif;
  opacity: 1;
  color: #ffffff;
  border-radius: 30px;
  z-index: 1;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.main-menu .navigation>li>a.theme-btn-sm {
  padding: 15px 15px;
  line-height: 1.3;
  /* font-size: 15px; */
  text-transform: inherit;
}

.main-menu .navigation>li.dropdown>a {
  padding-right: 17px;
}

.main-menu .navigation>li.dropdown>a:before {
  position: absolute;
  content: "\f107";
  font-family: 'Font Awesome 5 Pro';
  top: 35px;
  top: 10px;
  right: 0;
  font-weight: 500;
  transition: all 500ms ease;
}

.main-menu .navigation>li>ul,
.main-menu .navigation>li>.megamenu {
  position: absolute;
  left: inherit;
  top: 100%;
  width: 230px;
  margin-top: 15px;
  z-index: 100;
  display: none;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 15%;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 3px;
  transform: translateX(-50%) rotate(45deg);
}

.main-menu .navigation>li>ul.from-right {
  left: auto;
  right: 0px;
}

.main-menu .navigation>li>ul>li {
  position: relative;
  width: 100%;
}

.main-menu .navigation>li>ul>li>a{
  position: relative;
  display: block;
  padding: 10px 15px;
  line-height: 24px;
  font-weight: 400;
  font-size: 15px;
  text-transform: capitalize;
  font-family: 'Poppins', sans-serif;
  /* color: #fff; */
  color: #000000;
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>a {
  /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.main-menu .navigation>li>ul>li>a:hover{
  color: var(--thm-base);
}

.main-menu .navigation>li>ul>li:last-child>a {
  border-bottom: none;
}

.main-menu .navigation>li>ul>li.dropdown>a:after {
  font-family: 'Font Awesome 5 Pro';
  content: "\f105";
  position: absolute;
  right: 20px;
  top: 10px;
  display: block;
  line-height: 24px;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  z-index: 5;
}

.main-menu .navigation>li>ul>li>ul {
  position: absolute;
  left: 100%;
  top: 0%;
  margin-top: 15px;
  width: 230px;
  z-index: 100;
  display: none;
  border-radius: 0px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>ul.from-right {
  left: auto;
  right: 0px;
}

.main-menu .navigation>li>ul>li>ul>li {
  position: relative;
  width: 100%;
}

.main-menu .navigation>li>ul>li>ul>li:last-child {
  border-bottom: none;
}

.main-menu .navigation>li>ul>li>ul>li>a {
  position: relative;
  display: block;
  padding: 10px 30px;
  line-height: 24px;
  font-weight: 500;
  font-size: 15px;
  text-transform: capitalize;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation>li>ul>li>ul>li:last-child>a {
  border-bottom: none;
}

.main-menu .navigation>li>ul>li>ul>li>a:hover {
  padding-left: 45px;
  color: #000;
}

.main-menu .navigation>li>ul>li>ul>li.dropdown>a:after {
  font-family: 'Font Awesome 5 Pro';
  content: "\f105";
  position: absolute;
  right: 20px;
  top: 12px;
  display: block;
  line-height: 24px;
  font-size: 16px;
  font-weight: 900;
  z-index: 5;
}

.main-menu .navigation>li.dropdown:hover>ul {
  visibility: visible;
  opacity: 1;
  margin-top: 0px;
  top: 100%;
}

.main-menu .navigation li>ul>li.dropdown:hover>ul {
  visibility: visible;
  opacity: 1;
  top: 0%;
  margin-top: 0px;
}

.main-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: -32px;
  top: 66px;
  width: 34px;
  height: 30px;
  text-align: center;
  font-size: 18px;
  line-height: 26px;
  color: #3b3b3b;
  cursor: pointer;
  display: none;
  z-index: 5;
  transition: all 500ms ease;
}

.main-menu .navigation li.dropdown ul li.dropdown .dropdown-btn {
  display: none;
}

.menu-area .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color: #3786ff;
  display: none;
}

.menu-area .mobile-nav-toggler .icon-bar {
  position: relative;
  height: 2px;
  width: 30px;
  display: block;
  margin-bottom: 5px;
  background-color: #222;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.menu-area .mobile-nav-toggler .icon-bar:last-child {
  margin-bottom: 0px;
}

@media only screen and (max-width: 1549px){

  .main-header .header-lower .logo-box{
    padding-left: 50px;
    padding-right: 50px;
  }

  .main-menu .navigation > li{
    margin: 0px 15px;
  }

}

@media only screen and (max-width: 1200px){

  .main-menu{
    display: none !important;
  }

}

@media only screen and (min-width: 768px){
  .main-menu .navigation > li > ul,
  .main-menu .navigation > li > ul > li > ul,
  .main-menu .navigation > li > .megamenu{
    display:block !important;
    visibility:hidden;
    opacity:0;
  }
}

@media only screen and (max-width: 767px){

  .menu-area .mobile-nav-toggler{
    margin-top: 12px;
    margin-right: 15px;
  }

}


/** mobile-menu **/

.nav-outer .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color: #3786ff;
  display: none;
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
  transition: all 900ms ease;
}

.mobile-menu .navbar-collapse {
  display: block !important;
}

.mobile-menu .nav-logo {
  position: relative;
  padding: 50px 25px;
  text-align: left;
  padding-bottom: 100px;
}

.mobile-menu-visible {
  overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .menu-backdrop {
  position: fixed;
  left: 0%;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 900ms ease;
  background-color: #000;
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
  opacity: 0.70;
  visibility: visible;
  right: 100%;
  -webkit-transition: all .8s ease-out 0s;
  -o-transition: all .8s ease-out 0s
}

.mobile-menu .menu-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #141417;
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  transition: all 900ms ease !important;
}

.mobile-menu-visible .mobile-menu .menu-box {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu .close-btn {
  position: absolute;
  right: 25px;
  top: 10px;
  line-height: 30px;
  width: 24px;
  text-align: center;
  font-size: 16px;
  color: #ffffff;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.9s ease;
  -moz-transition: all 0.9s ease;
  -ms-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transition: all 0.9s ease;
}

.mobile-menu-visible .mobile-menu .close-btn {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
}

.mobile-menu .close-btn:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  float: none;
}

.mobile-menu .navigation li {
  position: relative;
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>ul>li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.mobile-menu .navigation li>a {
  position: relative;
  display: block;
  line-height: 24px;
  padding: 10px 25px;
  font-size: 15px;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mobile-menu .navigation li ul li>a {
  font-size: 16px;
  margin-left: 20px;
  text-transform: capitalize;
}

.mobile-menu .navigation li>a:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  border-left: 5px solid #fff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

.mobile-menu .navigation li.current>a:before {
  height: 100%;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 6px;
  top: 6px;
  width: 32px;
  height: 32px;
  text-align: center;
  font-size: 16px;
  line-height: 32px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  cursor: pointer;
  border-radius: 2px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn.open {
  color: #ffffff;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.mobile-menu .navigation li>ul,
.mobile-menu .navigation li>ul>li>ul,
.mobile-menu .navigation>li.dropdown>.megamenu {
  display: none;
}

.mobile-menu .social-links {
  position: relative;
  padding: 0px 25px;
}

.mobile-menu .social-links li {
  position: relative;
  display: inline-block;
  margin: 0px 10px 10px;
}

.mobile-menu .social-links li a {
  position: relative;
  line-height: 32px;
  font-size: 16px;
  color: #ffffff;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
}

div#mCSB_1_container {
  top: 0px !important;
}

.mobile-menu .contact-info {
  position: relative;
  padding: 120px 30px 20px 30px;
}

.mobile-menu .contact-info h4 {
  position: relative;
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 20px;
}

.mobile-menu .contact-info ul li {
  position: relative;
  display: block;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.80);
  margin-bottom: 3px;
}

.mobile-menu .contact-info ul li a {
  color: rgba(255, 255, 255, 0.80);
}

.mobile-menu .contact-info ul li:last-child {
  margin-bottom: 0px;
}

.main-header .outer-box {
  position: relative;
}

@media only screen and (max-width: 1200px){

  .menu-area .mobile-nav-toggler {
    display: block;
    padding: 10px;
    margin-top: 41px;
    margin-left: 15px;
  }

  .header-style .menu-area .mobile-nav-toggler{
    margin: 0px;
  }


}


/** banner-section **/

.forcefullwidth_wrapper_tp_banner {
  overflow: hidden;
}

.rev_slider_wrapper.page_banner_video::before {
  position: absolute;
    content: "";
    z-index: 99;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .2);
    background: linear-gradient(0deg, rgba(27, 35, 34, .2) 0%, rgba(27, 35, 34, .2) 30%, rgba(27, 35, 34, .2) 60%, rgba(27, 35, 34, .7) 100%);
    pointer-events: none;
}

.tp-bullets {
  display: none;
}

.banner-slider__wrapper {
  z-index: 1;
  margin-top: 0;
  position: relative;
}

.banner-slider__wrapper.banner-slider__wrapper_2 {
  z-index: 1;
}

.banner-slider__wrapper.banner-slider__wrapper_2:after {
  display: none !important;
}

.banner-slider__wrapper.banner-slider__wrapper_2 .slider-item {
  /* padding: 150px 0 160px; */
  background-position: center;
  z-index: 40;
  overflow-x: hidden !important;
  height: 600px;
}

@media (max-width: 991px) {
  .banner-slider__wrapper.banner-slider__wrapper_2 .slider-item {
    /* padding: 140px 0 200px; */
    height: 500px;
  }
}

@media (max-width: 767px) {
  .banner-slider__wrapper.banner-slider__wrapper_2 .slider-item {
    padding: 100px 0 100px;
  }
}

.banner-slider__wrapper.banner-slider__wrapper_2 .slider-item .shape-element-left {
  bottom: 0;
  left: 0;
  z-index: -1;
  position: absolute;
}

.banner-slider__wrapper.banner-slider__wrapper_2 .slider-item .shape-element-rignt {
  top: 0;
  right: 0;
  z-index: -1;
  position: absolute;
}

.banner-slider__wrapper.banner-slider__wrapper_2 .slider-item .banner__content h1 span {
  font-weight: 400 !important;
}

.banner-slider__wrapper.banner-slider__wrapper_2 .slider-item .banner__content a {
  background-color: #FFF;
  color: var(--thm-base);
}

.banner-slider__wrapper:after {
  z-index: 0;
  width: 526px;
  content: "";
  bottom: -388px;
  height: 526px;
  position: absolute;
  border-radius: 500px;
  left: calc(50% - 263px);
  background: rgba(255, 156, 0, 0.4);
}

@media (max-width: 1199px) {
  .banner-slider__wrapper:after {
    width: 400px;
    height: 400px;
    bottom: -300px;
    left: calc(50% - 200px);
  }
}

.banner-slider__wrapper .slider-item {
  z-index: -1;
  position: relative;
  background-size: cover;
  /* padding: 150px 0 200px; */
  background-position: center;
}

@media only screen and (max-width: 1399px) {
  /* .banner-slider__wrapper .slider-item {
    padding: 300px 0 260px;
  } */
}

@media only screen and (max-width: 1199px) {
  /* .banner-slider__wrapper .slider-item {
    padding: 200px 180px;
  } */
}

@media only screen and (max-width: 991px) {
  .banner-slider__wrapper .slider-item {
    padding: 170px 140px;
  }
}

@media only screen and (max-width: 767px) {
  .banner-slider__wrapper .slider-item {
    padding: 160px 130px;
  }
}

@media (max-width: 575px) {
  .banner-slider__wrapper .slider-item {
    padding: 140px 115px;
  }
}

.banner-slider__wrapper .slider-item:after {
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  content: "";
  height: 100%;
  position: absolute;
  background-image: url(assets/img/banner/banner-slider-overly.png);
}

.banner-slider__wrapper .slider-item .number {
  right: 50px;
  font-size: 160px;
  position: absolute;
  line-height: 121px;
  font-family: "Pathway Gothic One";
  top: calc(50% - 60.5px);
  -webkit-text-stroke: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px !important;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.4);
}

@media only screen and (max-width: 767px) {
  .banner-slider__wrapper .slider-item .number {
    right: 25px;
    font-size: 130px;
    line-height: 100px;
  }
}

.banner-slider__wrapper .banner__content {
  max-width: 893px;
  margin-left: auto;
  margin-right: auto;
}

.banner-slider__wrapper .banner__content h1 {
  font-size: 60px;
}

.banner-slider__wrapper .banner__content .sub-title span {
  color: var(--thm-base);
}

.banner-slider__wrapper .banner__content .theme-btn {
  font-weight: 600;
  padding: 15px 33.5px;
  background: var(--thm-base);
}

.banner-slider__wrapper .banner__content .theme-btn::after {
  background: #FFF;
}

.banner-slider__wrapper .banner__content .theme-btn:hover,
.banner-slider__wrapper .banner__content .theme-btn:focus {
  color: var(--thm-base);
  background: #FFF;
}

.banner-slider__wrapper .banner__content .theme-btn__wrapper {
  gap: 20px;
}

.banner-slider__wrapper .banner__content .theme-btn.btn-white {
  color: var(--thm-base);
  background: #FFF;
}

.banner-slider__wrapper .banner__content .theme-btn.btn-white::after {
  background: var(--thm-base);
}

.banner-slider__wrapper .banner__content .theme-btn.btn-white:hover,
.banner-slider__wrapper .banner__content .theme-btn.btn-white:focus {
  color: #FFF;
  background: var(--thm-base);
}

.banner-slider__wrapper .slider-controls {
  z-index: 2;
  left: 100px;
  position: absolute;
  top: calc(50% - 58px);
}

.banner-slider__wrapper .slider-controls.slider-controls-2 {
  top: calc(50% - 58px);
  right: 0px !important;
}

.banner-slider__wrapper .slider-controls.slider-controls-2 .banner-slider-arrows {
  position: absolute;
  right: 100px !important;
}

@media (max-width: 1399px) {
  .banner-slider__wrapper .slider-controls.slider-controls-2 .banner-slider-arrows {
    right: 50px !important;
  }
}

@media (max-width: 1199px) {
  .banner-slider__wrapper .slider-controls.slider-controls-2 .banner-slider-arrows {
    right: 30px !important;
  }
}

@media (max-width: 767px) {
  .banner-slider__wrapper .slider-controls.slider-controls-2 .banner-slider-arrows {
    right: 15px !important;
  }
}

@media (max-width: 600px) {
  .banner-slider__wrapper .slider-controls.slider-controls-2 .banner-slider-arrows {
    display: none !important;
  }
}

@media (max-width: 1399px) {
  .banner-slider__wrapper .slider-controls {
    left: 50px;
  }
}

@media (max-width: 1199px) {
  .banner-slider__wrapper .slider-controls {
    left: 30px;
  }
}

@media (max-width: 767px) {
  .banner-slider__wrapper .slider-controls {
    left: 15px;
    top: calc(50% - 48px);
  }
}

@media (max-width: 650px) {
  .banner-slider__wrapper .slider-controls {
    top: calc(85% - 45px);
  }
}

.banner-slider__wrapper .slider-controls .banner-slider-arrows {
  gap: 16px;
}

@media (max-width: 650px) {
  .banner-slider__wrapper .slider-controls .banner-slider-arrows {
    gap: 10px;
  }
}

.banner-slider__wrapper .slider-controls .banner-slider-arrows .slick-arrow {
  width: 50px;
  height: 50px;
  color: #FFF;
  line-height: 55px;
  text-align: center;
  border-radius: 500px;
  border: 1px solid #FFF;
  background: transparent;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 767px) {
  .banner-slider__wrapper .slider-controls .banner-slider-arrows .slick-arrow {
    width: 40px;
    height: 40px;
    line-height: 45px;
  }
}

.banner-slider__wrapper .slider-controls .banner-slider-arrows .slick-arrow.slick-prev {
  color: var(--thm-base);
  border-color: var(--thm-base);
}

.banner-slider__wrapper .slider-controls .banner-slider-arrows .slick-arrow.slick-prev:hover {
  color: #FFF;
  background: var(--thm-base);
}

.banner-slider__wrapper .slider-controls .banner-slider-arrows .slick-arrow i {
  opacity: 0.9;
  font-size: 20px;
}

@media (max-width: 767px) {
  .banner-slider__wrapper .slider-controls .banner-slider-arrows .slick-arrow i {
    font-size: 18px;
  }
}

.banner-slider__wrapper .slider-controls .banner-slider-arrows .slick-arrow:hover {
  color: var(--thm-base);
  background: #FFF;
}

.banner-slider__wrapper .slick-dots {
  gap: 22px;
  z-index: 1;
  bottom: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: calc(50% - 40px);
}

@media (max-width: 1199px) {
  .banner-slider__wrapper .slick-dots {
    bottom: 30px;
  }
}

.banner-slider__wrapper .slick-dots li {
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: relative;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  border-radius: 500px;
  background: transparent;
  border: 2px solid #FFF;
}

@media (max-width: 1199px) {
  .banner-slider__wrapper .slick-dots li {
    width: 16px;
    height: 16px;
  }
}

.banner-slider__wrapper .slick-dots li.slick-active:after {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.banner-slider__wrapper .slick-dots li:after {
  content: "";
  width: 8px;
  height: 8px;
  line-height: 20px;
  position: absolute;
  background: #FFF;
  left: calc(50% - 4px);
  border-radius: 500px;
  top: calc(50% - 4px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: scale(0);
  transform: scale(0);
}

@media (max-width: 1199px) {
  .banner-slider__wrapper .slick-dots li:after {
    width: 6px;
    height: 6px;
    top: calc(50% - 3px);
    left: calc(50% - 3px);
  }
}

.banner-slider__wrapper .slick-dots li button {
  display: none;
}


/** Mission,Vission,values-section **/
.service_area {
  position: relative;
  z-index: 9;
}

.single_services {
  padding: 80px 40px;
  position: relative;
  z-index: 5;
  width: 100%;
  overflow: hidden;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

  .single_services {
    padding: 50px 30px;
  }

}

@media only screen and (max-width: 767px) {

  .service_area.sec-pad {
    padding-bottom: 0 !important;
  }

  .single_services {
    padding: 40px 18px;
  }

}

.single_services::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: -1;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.single_services .services_content {
  margin-top: 20px;
  max-width: 290px;
  margin-left: auto;
  margin-right: auto;
}

.single_services .services_content .services_title a {
  font-size: 26px;
  color: #fff;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.single_services .services_content p {
  color: #fff;
  margin-top: 15px;
}

.single_services.active {
  padding-top: 110px;
  padding-bottom: 110px;
  margin-top: -30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single_services.active {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media only screen and (max-width: 991px) {
  .service_area .container {
    max-width: 100%;
    padding: 0 12px;
  }

}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single_services.active {
    margin-top: 0;
    padding: 80px 40px;
  }
}

@media only screen and (max-width: 767px) {
  .single_services.active {
    margin-top: 0;
    padding: 80px 40px;
  }
}

.single_services.active_2 {
  padding-top: 110px;
  margin-top: -30px;
  margin-bottom: -30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .single_services.active_2 {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .single_services.active_2 {
    margin-top: 0;
    padding: 80px 40px;
  }
}

@media (max-width: 767px) {
  .single_services.active_2 {
    margin-top: 0;
    padding: 80px 40px;
  }
}

.single_services.services_1 {
  background-color: #9238a4;
}

.single_services.services_2 {
  background-color: #f86048;
}

.single_services.services_3 {
  background-color: #00bdc0;
}

.single_services.services_4 {
  background-color: #f1ae44;
}

.single_services .services_icon i.fal {
  color: #ffffff;
  font-size: 50px;
}


/** feature-section **/

.feature-style {
  position: relative;
}

.feature-style .inner-container {
  position: relative;
  z-index: 2;
}

.feature-inner-box .owl-stage {
  display: flex;
}

.feature-inner-box .feature-block {
  display: flex;
  flex: 1 0 auto;
  height: 100%;
}

.feature-block .inner-box {
  align-items: stretch;
  background: var(--thm-base);
  border-radius: 40px;
  display: flex;
  justify-content: center;
  position: relative;
  padding: 10px 25px;
  overflow: hidden;
  flex-direction: column;
  width: 100%;
}

.feature-block .inner-box .icon-box {
  position: relative;
  display: block;
  font-size: 40px;
  line-height: 60px;
}

.feature-block .inner-box h3 {
  display: block;
  font-size: 1rem;
  line-height: 22px;
  font-weight: 500;
}

.feature-block .inner-box h3 a {
  display: inline-block;
  color: var(--thm-text-white);
}

.feature-block .inner-box h3 a:hover {
  text-decoration: underline;
}

.feature-block .inner-box p {
  color: var(--thm-color);
}

.feature-inner-box .owl-nav {
  position: absolute;
  left: 0px;
  top: 40%;
  width: 100%;
}

.feature-inner-box .owl-nav button {
  background-color: #ffffff;
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #e5e5e5;
  border-radius: 50%;
  font-size: 30px;
  color: #333;
  text-align: center;
  cursor: pointer;
  -webkit-box-shadow: var(--primary-bshadow);
  box-shadow: var(--primary-bshadow);
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.feature-inner-box .owl-nav button {
  position: absolute;
  top: 0px;
  margin-top: -10px;
}

.feature-inner-box .owl-nav button.owl-prev {
  left: -20px;
}

.feature-inner-box .owl-nav button.owl-next {
  right: -20px;
}

.feature-inner-box .owl-nav button:hover {
  color: #fff;
}

.feature-inner-box .owl-nav button:hover {
  background: var(--thm-base);
  border-color: var(--thm-base);
}

.feature-inner-box .owl-dots {
  margin-top: 30px;
}

.owl-dots-none .owl-dots, .owl-nav-none .owl-nav {
  display: none !important;
}



@media only screen and (max-width: 1200px){

  .feature-block .inner-box{
    padding-left: 30px;
    padding-right: 30px;
  }


}

@media only screen and (max-width: 991px){

  .feature-block .inner-box{
    margin-bottom: 30px;
  }

  /* .feature-inner-box.owl-dots-none .owl-dots, .feature-inner-box.owl-nav-none .owl-nav {
    display: block !important;
  }

  .feature-inner-box .owl-nav {
    display: none;
  } */

}


/** about-section **/
.about-style {
  position: relative;
}

.about-style .image-box {
  margin-left: 40px;
}

.about-style .image-box .image {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 15px;
}

.about-style .image-box .image img {
  width: 100%;
  border-radius: 15px;
  transition: all 500ms ease;
}

.about-style .image-box .image:hover img {
  transform: scale(1.05);
}

.about-style .image-box .image-shape {
  position: absolute;
  left: -78px;
  bottom: -78px;
  width: 198px;
  height: 198px;
  background-repeat: no-repeat;
  -webkit-animation: zoom-fade 7s infinite linear;
  animation: zoom-fade 7s infinite linear;
}

.content_block .content-box {
  position: relative;
  display: block;
}

.content_block .content-box .text p {
  margin-bottom: 30px;
}

.content_block .content-box .text p:last-child {
  margin-bottom: 0px;
}

@media only screen and (max-width: 1200px){

  .about-style .image-box{
    margin-right: 0px;
  }

}

@media only screen and (max-width: 991px){

  .about-style{
    padding-top: 90px;
  }

  .about-style .image-box{
    margin-bottom: 30px;
    margin-left: 0;
  }

}

@media only screen and (max-width: 767px){

  .about-style{
    padding-top: 40px;
  }

}

/** project-section **/

.project-section{
  position: relative;
}

.project-block-one .inner-box{
  position: relative;
  display: block;
  overflow: hidden;
}

.project-block-one .inner-box .image-box{
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--border-radius-lg);
}

.project-block-one .inner-box .image-box img{
  width: 100%;
  transition: all 500ms ease;
}

.project-block-one .inner-box:hover .image-box img{
  opacity: 0.2;
  transform: scale(1.05);
}

.project-block-one .inner-box .content-box{
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 1;
  text-align: center;
}

.project-block-one .inner-box .content-box .view-btn{
  position: relative;
  display: block;
  margin-bottom: 25px;
  top: -15px;
  opacity: 0;
  transition: all 500ms ease;
}

.project-block-one .inner-box:hover .content-box .view-btn{
  top: 0px;
  opacity: 1;
}

.project-block-one .inner-box .content-box .view-btn a{
  position: relative;
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 88px;
  background: #fff;
  font-size: 30px;
  color: #333;
  text-align: center;
  border-radius: 50%;
}

.project-block-one .inner-box .content-box .view-btn a:hover{
  color: #fff;
  background: #000;
}

.project-block-one .inner-box .content-box h3{
  position: relative;
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  margin-bottom: 0px;
  bottom: -15px;
  opacity: 0;
  transition: all 500ms ease;
}

.project-block-one .inner-box:hover .content-box h3{
  bottom: 0px;
  opacity: 1;
}

.project-block-one .inner-box .content-box h3 a{
  display: inline-block;
  color: #fff;
}

.project-block-one .inner-box .content-box h3 a:hover{
  text-decoration: underline;
}

.project-block-one .inner-box .content-box p{
  display: block;
  color: #fff;
  font-weight: 500;
  bottom: -15px;
  opacity: 0;
  transition: all 500ms ease;
}

.project-block-one .inner-box:hover .content-box p{
  bottom: 0px;
  opacity: 1;
}


/** Message **/

.mesage_section .table {
  border: none;
  box-shadow: none;
  background-color: #f0f5f9;
}

.mesage_section .table > tbody > tr > td {
  padding-left: 0;
}

.mesage_section .table > tbody > tr > td,
.message_section .table > tbody > tr > td:hover{
  background: #f0f5f9 !important;
}

.mesage_section .table > tbody > tr > td > p{
  font-size: 1rem;
  margin: 0;
}


/** post-overlay **/

.joblist {
  margin-bottom: 30px;
}

.post-overlay {
  position: relative;
  height: 100%;
}

.post-overlay .post-img {
  height: 100%;
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
}

.post-overlay .post-img > a:first-of-type {
  position: relative;
  display: block;
}

.post-overlay .post-img > a:first-of-type::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(59%, rgba(0, 0, 0, 0.2)), to(rgba(0, 0, 0, 0.8)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 59%, rgba(0, 0, 0, 0.8) 100%);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-bottom-left-radius: var(--border-radius-xs);
  border-bottom-right-radius: var(--border-radius-xs);
}

.post-overlay .post-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  transition: all 1.5s ease-out;
  -webkit-transition: all 1.5s ease-out;
  -moz-transition: all 1.5s ease-out;
  -ms-transition: all 1.5s ease-out;
}

.post-overlay:hover .post-img img {
  -webkit-transform: scale3d(1.1, 1.1, 1);
          transform: scale3d(1.1, 1.1, 1);
}

.post-overlay .post-img + .post-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  padding: 25px;
}

.post-overlay .post-content .post-title {
  font-size: 1.424rem;
  margin-bottom: 10px;
  color: #fff;
}

.post-title a {
  color: inherit;
  display: inline;
  padding-bottom: 0;
  -webkit-transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), color-stop(98%, currentColor));
  background-image: linear-gradient(to bottom, currentColor 0%, currentColor 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
}

.post-overlay .post-content .post-title:hover {
  color: #fff;
}

.post-overlay .post-content .post-title:hover a {
  background-size: 100% 2px;
}

.check-list li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 10px;
}

.check-list li:before {
  content: "\f058";
  font-family: "Font Awesome 5 Pro";
  color: #df2e2e;
  font-size: 16px;
  position: absolute;
  top: 0;
  left: 0;
}

.joblist-detail a {
  color: #df2e2e;
}

.joblist-detail p {
  margin-bottom: 0;
}

@media only screen and (max-width:991px) {

  .check-list li {
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .check-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }

}

/** Single-Job-Detail-Secton **/

.job-details-content>p {
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 28px
}

.job-details-content h1,
.job-details-content h2,
.job-details-content h3,
.job-details-content h4,
.job-details-content h5,
.job-details-content h6 {
  font-size: 1.125rem;
  color: var(--title-color);
  font-weight: 600;
  margin-bottom: 15px
}

.job-details-content>ul {
  margin: 0;
  padding: 0;
  list-style: none;
  padding-top: 13px;
  margin-bottom: 35px
}

.job-details-content ul:last-child{
  margin-bottom: 0;
}

.job-details-content h6 + ul {
  padding-top: 0;
}

.job-details-content>ul li {
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 1rem;
  line-height: 30px;
  color: var(--text-color1);
  margin-bottom: 7px;
  padding-left: 15px;
  position: relative
}

.job-details-content>ul li::before {
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: var(--thm-rgba);
  position: absolute;
  left: 0;
  top: 10px
}

.job-details-content>ul li:last-child {
  margin-bottom: 0
}

.job-details-content .job-list-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 30px;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 50px
}

@media only screen and (min-width:1400px) and (max-width:1599px) {
  .job-details-content .job-list-content {
      gap: 30px
  }
}

@media only screen and (max-width:1399px) {
  .job-details-content .job-list-content {
      gap: 30px
  }
}

@media only screen and (max-width:1199px) {
  .job-details-content .job-list-content {
      flex-wrap: wrap;
      gap: 30px
  }
}

.job-details-content .job-list-content .company-area {
  display: flex;
  align-items: center;
  position: relative
}

.job-details-content .job-list-content .company-area .logo {
  border-radius: 50%;
  margin-right: 20px
}

@media only screen and (min-width:1400px) and (max-width:1599px) {
  .job-details-content .job-list-content .company-area .logo {
      margin-right: 10px
  }
}

@media only screen and (max-width:1399px) {
  .job-details-content .job-list-content .company-area .logo {
      margin-right: 10px
  }
}

@media only screen and (max-width: 620px) {
  .job-details-content .job-list-content .company-area {
    width: 100%;
  }
}

.job-details-content .job-list-content .company-area .logo img {
  border-radius: 50%;
  /* height: 40px;
  width: 40px; */
}

.job-details-content .job-list-content .company-area .company-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%
}

.job-details-content .job-list-content .company-area .company-details .name-location h5 {
  margin-bottom: 3px
}

.job-details-content .job-list-content .company-area .company-details .name-location h5 a {
  font-size: 1.063rem;
  font-weight: 600;
  color: var(--title-color1);
  font-family: var(--font-exo2);
  transition: .35s
}

.job-details-content .job-list-content .company-area .company-details .name-location h5 a:hover {
  color: var(--primary-color1)
}

.job-details-content .job-list-content .company-area .company-details .name-location p {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  font-size: .938rem;
  font-weight: 500;
  color: var(--text-color1);
  font-family: var(--font-work-sans)
}

.job-details-content .job-list-content .company-area .company-details .name-location p img {
  margin-right: 8px
}

.job-details-content .job-list-content .job-discription {
  display: flex;
  align-items: center;
  gap: 30px
}

@media(min-width:1400px) and (max-width:1599px) {
  .job-details-content .job-list-content .job-discription {
      gap: 25px
  }
}

@media(max-width:1399px) {
  .job-details-content .job-list-content .job-discription {
      gap: 25px
  }
}

@media(max-width:991px) {
  .job-details-content .job-list-content .job-discription {
      display: block
  }
}

.job-details-content .job-list-content .job-discription ul {
  margin: 0;
  padding: 0;
  list-style: none
}

.job-details-content .job-list-content .job-discription ul li {
  margin-bottom: 5px;
  display: flex;
  align-items: center
}

.job-details-content .job-list-content .job-discription ul li img {
  padding-right: 8px
}

.job-details-content .job-list-content .job-discription ul li p {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-color1);
  font-family: var(--font-work-sans)
}

.job-details-content .job-list-content .job-discription ul li p .title {
  color: var(--title-color1);
  font-weight: 500;
  font-family: var(--font-exo2)
}

.job-details-content .job-list-content .job-discription ul li:last-child {
  margin-bottom: 0
}

.job-details-content .job-list-content .job-discription ul li a {
  transition: .35s
}

.job-details-content .job-list-content .job-discription ul li a:hover {
  color: var(--primary-color1)
}

@media(max-width:1399px) {
  .job-details-content .job-list-content .job-discription ul.one {
      margin-bottom: 3px
  }
}


/** List-style-section **/

.list-style-one li {
  font-family: var(--font-work-sans);
  font-weight: 500;
  font-size: 1rem;
  line-height: 30px;
  color: var(--text-color1);
  margin-bottom: 7px;
  padding-left: 15px;
  position: relative;
}

.list-style-one li::before {
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background-color: var(--thm-rgba);
  position: absolute;
  left: 0;
  top: 10px;
}


/** Procedure-section **/

.table a.btnViewFile, .btnViewFile {
  background: var(--thm-base);
  color: #ffffff;
  text-shadow: none;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}


/** clients-section **/

.clients-section {
  position: relative;
  padding: 55px 0px;
}

.clients-section .clients-logo {
  position: relative;
  display: block;
}

.clients-section .clients-logo img {
  position: relative;
  display: block;
  max-width: auto;
  margin: 0 auto;
  transition: all 500ms ease;
}

.clients-section .clients-logo img:hover {
  opacity: 0.5;
}

.owl-thumbs {
  display: none;
}


/** main-footer **/

.main-footer {
  position: relative;
  background: #15181d none repeat scroll 0 0;
}

.about-widget .footer-logo {
  position: relative;
  max-width: 251px;
  width: 100%;
}

.about-widget .footer-logo img {
  width: 100%;
  padding: 10px;
}

.about-widget .social-links {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.about-widget .social-links li {
  position: relative;
  display: inline-block;
  margin-right: 15px;
}

.about-widget .social-links li:last-child {
  margin: 0px !important;
}

.about-widget .social-links li a {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
}

.main-footer .widget-section {
  position: relative;
  padding: 102px 0px 105px 0px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.main-footer .widget-section .widget-title {
  position: relative;
  display: block;
  margin-bottom: 34px;
}

.main-footer .widget-section .widget-title h3 {
  display: block;
  font-size: 24px;
  line-height: 32px;
  color: #fff;
  font-weight: 600;
}

.main-footer .widget-section p,
.main-footer .widget-section a,
.main-footer .widget-section li {
  color: #fff;
}

.main-footer .widget-section .about-widget p {
  margin-bottom: 26px;
}

.main-footer .widget-section .about-widget p:last-child {
  margin-bottom: 0px;
}

.main-footer .widget-section .links-widget .links-list li {
  display: block;
  margin-bottom: 12px;
}

.main-footer .widget-section .links-widget .links-list li:last-child {
  margin-bottom: 0px;
}

.main-footer .widget-section .contact-widget p {
  margin-bottom: 26px;
}

.main-footer .widget-section .contact-widget .info-list li {
  position: relative;
  display: block;
  margin-bottom: 12px;
  padding-left: 26px;
}

.main-footer .widget-section .contact-widget .info-list li:last-child {
  margin-bottom: 0px;
}

.main-footer .widget-section .contact-widget .info-list li i {
  position: absolute;
  left: 0px;
  top: 2px;
  font-size: 20px;
}

.main-footer .widget-section .contact-widget .info-list li:nth-child(2) i {
  font-size: 14px;
  top: 8px;
}

.footer-bottom {
  position: relative;
  padding: 30px 0px;
}

.footer-bottom .copyright {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p,
.footer-bottom a {
  color: #fff;
}

.footer-copyright-section p {
  font-size: 16px;
  color: #d9d9d9;
  margin: 0;
}

@media only screen and (max-width: 991px){

  .main-footer .footer-widget{
    margin: 0px 0px 30px 0px !important;
  }

  .main-footer .widget-section{
    padding-bottom: 75px;
  }

}

@media only screen and (max-width: 599px) {

  .main-footer .footer-logo{
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .main-footer .widget-section{
    padding: 70px 0px 40px 0px;
  }

}

/** service-style **/

.card-section {
  position: relative;
}

.card-section .card-item-block,
.card-section .card-item-block .card-block {
  display: flex;
}

.card-block .inner-box {
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 15px 50px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 50px 30px 45px 40px;
  transition: all 500ms ease;
}

.card-block .inner-box:hover {
  transform: translateY(-10px);
}

.card-block .inner-box .icon-box {
  position: relative;
  display: block;
  font-size: 60px;
  margin-bottom: 16px;
}

.card-item-block:nth-child(2) .card-block .inner-box .icon-box {
  color: #3DC88F;
}

.card-item-block:nth-child(3) .card-block .inner-box .icon-box {
  color: #FDF6F8;
}

.card-item-block:last-child .card-block .inner-box .icon-box {
  color: #9C44E1;
}

.card-block .inner-box h3 {
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  margin-bottom: 20px;
}

.card-block .inner-box h3 a {
  display: inline-block;
  color: #333;
}

@media only screen and (max-width: 991px) {
  .card-block .inner-box {
    margin-bottom: 30px;
  }
}

/** Testimonial Section **/

.slick-list {
  margin-left: -15px;
  margin-right: -15px;
}
.slick-list .slick-track {
  height: 100%;
  display: table !important;
}

.testimonial__item.testimonial-item {
  background: transparent;
  padding: 40px 33px 30px 40px;
  border: 1px solid rgba(4, 33, 63, 0.1);
  border-radius: var(--border-radius-lg);
}

.slick-list .slick-track .slick-slide {
  padding-left: 15px;
  padding-right: 15px;
  vertical-align: middle;
  float: none !important;
  display: table-cell !important;
}

.testimonial__item.testimonial-item .testimonial__item-header .right i {
  font-size: 60px;
  color: rgba(239, 5, 72, 0.1);
}
.testimonial__item.testimonial-item .testimonial__item-footer .name,
.testimonial__item.testimonial-item .testimonial__item-footer .company {
  font-size: 16px;
  color: #04213F;
  line-height: 28px;
  text-transform: uppercase;
}
.testimonial__item.testimonial-item .testimonial__item-footer strong {
  font-weight: 500;
}
.testimonial__item.testimonial-item .testimonial__item-footer .name span,
.testimonial__item.testimonial-item .testimonial__item-footer .company span {
  font-size: 14px;
  font-family: "Lato", sans-serif;
  color: #1B3C54;
  line-height: 28px;
  text-transform: capitalize;
}

.testimonial__item.testimonial-item:hover {
  background: var(--thm-base);
}

.message-default-box .testimonial__item.testimonial-item {
  margin-bottom: 25px;
}

.testimonial__item.testimonial-item:hover .testimonial__item-header .right i {
  color: rgba(255, 255, 255, 0.2);
}

.testimonial__item.testimonial-item:hover .testimonial__item-header .left .meta .name, .testimonial__item.testimonial-item:hover .testimonial__item-header .left .meta .position {
  color: #FFF !important;
}

.testimonial__item.testimonial-item:hover .testimonial__item-footer .personal-info span {
  color: #FFF !important;
}

.testimonial__item.testimonial-item:hover .description,
.testimonial__item.testimonial-item:hover .description p {
  color: #FFF !important;
  transition: inherit;
}

@media (max-width: 1420px) {
  .testimonial__item {
    padding: 30px 25px;
  }
}

.testimonial__item.testimonial .quote::after {
  display: none;
}

.testimonial__item-header {
  gap: 10px 20px;
}

@media (max-width: 1420px) {
  .testimonial__item-header {
    gap: 10px 15px;
  }
}

@media (max-width: 450px) {
  .testimonial__item-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
}

.testimonial__item-header .left {
  gap: 10px 15px;
}

@media (max-width: 1420px) {
  .testimonial__item-header .left {
    gap: 8px 12px;
  }
}

.testimonial__item-header .left .media {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 500px;
}

.testimonial__item-header .left .media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonial__item-header .left .meta .name {
  font-size: 16px;
  line-height: 24px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.testimonial__item-header .left .meta .position {
  font-size: 14px;
  line-height: 28px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}


.testimonial-section .slider-controls .testimonial-slider-arrows .slick-arrow:hover i,
.testimonial .slider-controls .testimonial-slider-arrows .slick-arrow:focus i {
  color: #FFF;
}

.testimonial-section .slider-controls .testimonial-slider-arrows .slick-arrow.slick-next:hover i,
.testimonial .slider-controls .testimonial-slider-arrows .slick-arrow.slick-next:focus i {
  color: #FFF;
}
.testimonial-section .slider-controls.slider-controls-default .agency-slider-arrows,
.testimonial-section .slider-controls.slider-controls-default .candidates-slider-arrows {
  gap: 10px;
}
.testimonial-section .slider-controls.slider-controls-default .agency-slider-arrows .slick-arrow,
.testimonial-section .slider-controls.slider-controls-default .candidates-slider-arrows .slick-arrow {
  border: 1px solid #F8DDE4;
  width: 50px;
  height: 50px;
  line-height: 0;
  font-size: 22px;
  border-radius: 50%;
  padding: 8px;
}
.testimonial-section .slider-controls.slider-controls-default .agency-slider-arrows .slick-arrow i,
.testimonial-section .slider-controls.slider-controls-default .candidates-slider-arrows .slick-arrow i {
  color: var(--thm-base);
}
.testimonial-section .slider-controls.slider-controls-default .agency-slider-arrows .slick-arrow:hover,
.testimonial-section .slider-controls.slider-controls-default .candidates-slider-arrows .slick-arrow:hover,
.testimonial-section .slider-controls.slider-controls-default .agency-slider-arrows .slick-arrow:focus,
.testimonial-section .slider-controls.slider-controls-default .candidates-slider-arrows .slick-arrow:focus {
  background-color: var(--thm-base);
  border-color: var(--thm-base);
}
.testimonial-section .slider-controls.slider-controls-default .agency-slider-arrows .slick-arrow:hover i,
.testimonial-section .slider-controls.slider-controls-default .candidates-slider-arrows .slick-arrow:hover i,
.testimonial-section .slider-controls.slider-controls-default .agency-slider-arrows .slick-arrow:focus i,
.testimonial-section .slider-controls.slider-controls-default .candidates-slider-arrows .slick-arrow:focus i {
  color: #ffffff;
}
.testimonial-section .slider-controls.slider-controls-default .agency-slider-arrows .slick-arrow.slick-next i,
.testimonial-section .slider-controls.slider-controls-default .candidates-slider-arrows .slick-arrow.slick-next i {
  color: var(--thm-base);
}
.testimonial-section .slider-controls.slider-controls-default .agency-slider-arrows .slick-arrow.slick-next:hover,
.testimonial-section .slider-controls.slider-controls-default .candidates-slider-arrows .slick-arrow.slick-next:hover,
.testimonial-section .slider-controls.slider-controls-default .agency-slider-arrows .slick-arrow.slick-next:focus,
.testimonial-section .slider-controls.slider-controls-default .candidates-slider-arrows .slick-arrow.slick-next:focus {
  border-color: var(--thm-base);
  background-color: var(--thm-base);
}

.testimonial-section .slider-controls.slider-controls-default .agency-slider-arrows .slick-arrow.slick-next:hover i,
.testimonial-section .slider-controls.slider-controls-default .candidates-slider-arrows .slick-arrow.slick-next:hover i,
.testimonial-section .slider-controls.slider-controls-default .agency-slider-arrows .slick-arrow.slick-next:focus i,
.testimonial-section .slider-controls.slider-controls-default .candidates-slider-arrows .slick-arrow.slick-next:focus i {
  color: #ffffff;
}

@media only screen and (max-width: 575px) {

  .slick-dots {
    margin-top: 30px;
    text-align: center;
  }

  .slick-dots li{
    display: inline-block;
  }

  .slick-dots li button {
    background: #ffc9c9;
    display: block;
    border-radius: 4px;
    margin: 0px 5px 0px 5px;
    transition: opacity 200ms ease 0s;
    width: 15px;
    height: 15px;
    text-indent: -9999999px;
  }

  .slick-dots li.slick-active button {
    background: none repeat scroll 0 0 #ff5b5c;
  }

}

/** Accordion Section **/

.accordion-section {
  position: relative;
}

.accordion-box .block {
  position: relative;
  display: block;
  background: var(--thm-badge);
  border-radius: 10px;
  margin-bottom: 20px;
  transition: all 500ms ease;
}

.accordion-box .block.active-block {}

.accordion-box .block:last-child {
  margin-bottom: 0px;
}

.accordion-box .block .acc-btn {
  position: relative;
  display: block;
  cursor: pointer;
  padding: 20px 80px 20px 40px;
  transition: all 500ms ease;
}

.accordion-box .block .acc-btn .icon-outer {
  position: absolute;
  top: 23px;
  right: 30px;
  font-size: 18px;
  color: var(--thm-badge-color);
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active .icon-outer {
  color: #fff;
}

.accordion-box .block .acc-btn .icon-outer:before {
  position: absolute;
  content: '\f067';
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  top: 0px;
  right: 0px;
  width: 26px;
  height: 26px;
  line-height: 26px;
}

.accordion-box .block .acc-btn.active .icon-outer:before {
  opacity: 0;
}

.accordion-box .block .acc-btn.active .icon-outer:after {
  position: absolute;
  content: '\f068';
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  top: 0px;
  right: 0px;
  width: 26px;
  height: 26px;
  line-height: 26px;
}

.accordion-box .block .acc-btn h4 {
  color: var(--thm-badge-color);
  font-size: 20px;
  line-height: 30px;
  font-weight: 500;
  transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active h4 {
  color: #fff;
}

.accordion-box .block .acc-content {
  position: relative;
  display: none;
  padding: 15px 50px 45px 40px;
}

.accordion-box .block .acc-content.current {
  display: block;
}

.accordion-box .block.active-block .acc-content p {
  color: #fff;
}

.accordion-section .image-box {
  position: relative;
  display: block;
}

.accordion-section .image-box .image {
  position: relative;
  display: block;
  border-radius: 15px;
  overflow: hidden;
}

.accordion-section .image-box .image img {
  width: 100%;
  height: 570px;
  border-radius: 15px;
  object-fit: cover;
  transition: all 500ms ease;
}

.accordion-section .image-box .image:hover img {
  transform: scale(1.05);
}

.parallax-bg {
  position: absolute;
  left: 0px;
  top: -30%;
  width: 100%;
  height: 150%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}


/* ==============================================================
     # Blog
=================================================================== */

.news-style .content-side .info {
  background: #ffffff none repeat scroll 0 0;
  -moz-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.06);
  -webkit-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.06);
  -o-box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.06);
  padding: 30px;
  border-bottom-left-radius: var(--border-radius-lg);
  border-bottom-right-radius: var(--border-radius-lg);
}

.news-style .content-side.news-detail .info{
  background-color: transparent;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  box-shadow: none;
  padding: 0;
}

.news-style .content-side .item .thumb {
  overflow: hidden;
  position: relative;
}

.news-style .content-side.news-detail .item .thumb {
  border-radius: var(--border-radius-lg);
}

.news-style .content-side.news-detail .item .thumb {
  margin-bottom: 30px;
}

.news-style .content-side .item .thumb span.date {
  background: var(--thm-base) none repeat scroll 0 0;
  bottom: 0;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  left: 0;
  padding: 10px;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  width: 80px;
  z-index: 9;
}

.news-style .content-side .item .thumb img {
  width: 100%;
  -webkit-transition: all 0.35s ease-in-out;
  -moz-transition: all 0.35s ease-in-out;
  -ms-transition: all 0.35s ease-in-out;
  -o-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.news-style .content-side .item:hover .thumb img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.news-style .info .title-meta {
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 15px;
  padding-bottom: 20px;
}

.news-style.full-blog .info .title-meta .date {
  min-width: 65px;
  padding: 10px;
}

.news-style.col-3 .content-side .info .meta {
  margin-bottom: 0;
}

.news-style .content-side .info h2,
.news-style .content-side .info h3,
.news-style .content-side .info h4,
.news-style .content-side .info h5,
.item-box .info .title h3 {
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1.3;
  margin-bottom: 10px;
}

.news-style .content-side.news-detail .info .title h4 {
  margin-bottom: 0;
}

.news-style .content-side .info span {
  color: var(--thm-base);
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.news-style .content-side .info span i {
  margin-right: 5px;
}

.news-style .content-side .info .meta li {
  display: inline-block;
  font-size: 12px;
  margin-right: 10px;
  text-transform: uppercase;
  position: relative;
  padding-right: 10px;
}

.news-style .content-side .info .meta li::after {
  background: #c7c7c7 none repeat scroll 0 0;
  content: "";
  height: 10px;
  position: absolute;
  right: 0;
  top: 8px;
  width: 1px;
}

.news-style .content-side .info .meta li:last-child::after {
  display: none;
}

.news-style .content-side .info .meta li:last-child {
  margin: 0;
  padding: 0;
}

.news-style .content-side .info .meta li {
  display: inline-block;
  font-weight: 400;
}

.news-style .content-side .info .meta li,
.news-style .content-side .info .meta li a {
  color: #909090;
}

.news-style .content-side .info .meta li a:hover {
  color: var(--thm-base);
}

.news-style .content-side .info .meta li i {
  font-weight: 900;
  margin-right: 5px;
}

.news-style .content-side .info .meta li i {
  color: var(--thm-base);
}

.news-style .content-side .info a {
  color: #232323;
  display: inline-block;
  font-weight: 500;
  font-size: 18px;
}

.news-style .content-side .info .btn-link-share .theme-btn.btn-border {
  color: var(--thm-base);
  font-size: 15px;
  line-height: 22px;
  padding: 9px 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: transparent;
  border-color: transparent;
}

.news-style .content-side .info .btn-link-share .theme-btn.btn-border:after {
  background-color: var(--thm-base);
}

.news-style .content-side .info .btn-link-share .theme-btn.btn-border:hover,
.news-style .content-side .info .btn-link-share .theme-btn.btn-border:focus {
  color: #FFF;
  background-color: var(--thm-base);
}

.news-style .content-side .info .btn-link-share .theme-btn.btn-border i{
  opacity: 0.9;
  font-size: 20px;
  font-weight: 500;
}

.news-style .content-side .info a.btn {
  font-size: 12px;
  font-weight: 500;
  padding: 8px 20px;
}

.news-style .info .title-meta .date,
.news-style .info .title-meta .title {
  display: table-cell;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  vertical-align: middle;
}

.news-section .news-style .news-detail .info .title-meta .title,
.news-style .info .title-meta .title {
  padding-left: 20px;
}

.news-style .news-detail .info .title-meta .title {
  padding-left: 0;
}

.news-style .info .title-meta .date {
  background: var(--thm-base) none repeat scroll 0 0;
  border-radius: var(--border-radius-xs);
  color: #ffffff;
  text-align: center;
  width: 50px;
}

.news-style .info .title-meta .date span {
  color: #ffffff;
  display: block;
  font-weight: 600;
}

.news-style.full-blog .content-side .info a.btn {
  font-size: 12px;
  font-weight: 600;
  padding: 8px 30px;
  text-transform: uppercase;
}

.news-style .content-side .info a:hover {
  color: var(--thm-base);
}

.news-style .content-side .item-box {
  margin-bottom: 25px;
}

.news-style.full-blog.grid-colum .content-side .item-box {
  margin-bottom: 0;
}

.news-style.full-blog.grid-colum .content-side .equal-height {
  margin-bottom: 50px;
}

.news-style.full-blog .content-side .info {
  background: #ffffff none repeat scroll 0 0;
  padding-top: 30px;
}

.news-style.full-blog .content-side .item {
  box-shadow: inherit;
}

.news-style .item blockquote {
  background: #f6f6f6 none repeat scroll 0 0;
  border-left: 3px solid var(--thm-base);
  color: #414141;
  font-size: 15px;
  padding: 30px 50px;
  position: relative;
  z-index: 1;
}

.news-style .item blockquote::after {
  content: ",,";
  font-family: "Times New Roman";
  font-size: 60px;
  left: 20px;
  letter-spacing: -5px;
  opacity: 0.5;
  position: absolute;
  top: 50px;
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
}

.blog-area .item blockquote footer {
  background: transparent none repeat scroll 0 0;
  font-size: 14px;
}

blockquote .small:before,
blockquote footer:before,
blockquote small:before {
  content: '\2014 \00A0';
}

.sidebar-item h4 {
  border-bottom: 1px solid #e7e7e7;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 15px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.sidebar-item.category .sidebar-info {
  margin-top: -15px;
}

.sidebar-item.recent-post ul {
  margin-top: -5px;
}

.sidebar-item.archives .sidebar-info {
  margin-top: -15px;
}

.sidebar-item.tags .sidebar-info {
  margin-top: -5px;
}

.sidebar-item h4::after {
  background: var(--thm-base) none repeat scroll 0 0;
  bottom: -2px;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  width: 50px;
}

.sidebar-item {
  background: #ffffff none repeat scroll 0 0;
  border: 1px solid #e7e7e7;
  margin-bottom: 50px;
  padding: 30px;
}

.news-style.full-blog .sidebar {
  padding-left: 35px;
}

.sidebar-item:last-child {
  margin: 0;
}

.sidebar-item.newsletter input {
  border: 1px solid #e7e7e7;
  box-shadow: inherit;
}

.sidebar-item.newsletter form .input-group-addon button {
  background: var(--thm-base) none repeat scroll 0 0;
  border: medium none;
  box-shadow: inherit;
  color: #ffffff;
  line-height: 30px;
  padding: 10px 15px;
}

.sidebar-item.newsletter form .input-group-addon {
  border: medium none;
  box-shadow: inherit;
  padding: 0;
}

.news-style .sidebar-item.recent-post li a {
  color: #666666;
  display: block;
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  padding: 0;
  text-transform: inherit;
}

.news-style .content-side .item .thumb a {
  display: block;
  position: relative;
  z-index: 1;
}

.news-style .content-side .item .thumb a .overlay-icon {
  height: 100%;
  left: 0;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
  z-index: 1;
  opacity: 0;
  transition: all 0.35s ease-in-out 0s;
  -webkit-transition: all 0.35s ease-in-out 0s;
  -moz-transition: all 0.35s ease-in-out 0s;
  -ms-transition: all 0.35s ease-in-out 0s;
  -o-transition: all 0.35s ease-in-out 0s;
  background: var(--thm-rgba);
}

.news-style .content-side .item .thumb img {
  height: 305px;
  border-top-left-radius: var(--border-radius-lg);
  border-top-right-radius: var(--border-radius-lg);
  object-fit: cover;
}

.news-style .content-side.news-detail .item .thumb img {
  height: auto;
  width: auto;
}

.news-style .content-side .item .thumb:hover .overlay-icon {
  opacity: 1;
}

.news-style .content-side .item .thumb a .overlay-icon i {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #ffffff;
  font-size: 35px;
  height: 80px;
  left: 50%;
  line-height: 78px;
  margin-left: -40px;
  margin-top: -40px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 80px;
}

.news-style .content-side .item .thumb:hover .overlay-icon::after {
  opacity: .7;
}

.news-style .top-meta ul li,
.news-style .top-meta ul li a {
  color: #666666 !important;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500 !important;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.news-style .top-meta ul li::after {
  background: #666666 none repeat scroll 0 0;
  content: "";
  height: 1px;
  position: absolute;
  right: 0;
  top: 12px;
  width: 10px;
}

.news-style .top-meta ul li {
  margin-right: 8px;
  padding-right: 20px;
  letter-spacing: 1px;
}

.news-style .top-meta ul li:last-child::after {
  display: none;
}

.news-style .top-meta ul li:last-child {
  margin: 0;
  padding: 0;
}

.news-style .content-side .info .bottom-info ul {
  float: right;
}

.news-style .content-side .info .bottom-info ul li {
  display: inline-block;
}

.news-style .content-side .info .bottom-info ul li a {
  background: #f4f4f4 none repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  color: #232323;
  font-weight: normal;
  height: 40px;
  line-height: 40px;
  margin-left: 5px;
  text-align: center;
  width: 40px;
}

.news-style .content-side .info .bottom-info ul li a:hover {
  background: var(--thm-base) none repeat scroll 0 0;
  color: #ffffff;
}

.news-style .content-side .info .bottom-info {
  border-top: 1px solid #e7e7e7;
  line-height: 40px;
  margin-top: 20px;
  overflow: hidden;
  padding-top: 25px;
}

.news-style .content-side .info .bottom-info ul li,
.news-style .content-side .info .bottom-info a {
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
}

.news-section .info span {
  color: var(--thm-base);
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.news-style .top-meta {
  margin-bottom: 10px;
}

.sidebar-item.recent-post li a {
  color: #666666;
  display: block;
  font-size: 15px;
  font-weight: 500;
  margin: 0;
  padding: 0;
  text-transform: inherit;
}

.sidebar-item.recent-post li a:last-child {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
}

.sidebar-item.recent-post li a:hover {
  color: var(--thm-base);
}

.sidebar-item.recent-post li a span {
  display: inline-block;
}

.sidebar-item.recent-post li span {
  display: inline-block !important;
  margin-bottom: 0 !important;
  margin-top: 10px;
  text-transform: uppercase;
}

.news-style.full-blog .sidebar .info .meta-title {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  color: #666666;
}

.news-style.full-blog .sidebar .info .meta-title,
.news-style.full-blog .sidebar .info .meta-title span,
.news-style.full-blog .sidebar .info .meta-title a {
  color: #aeaeae;
}

.news-style.full-blog .sidebar .info .meta-title a:hover {
  color: var(--thm-base);
}

.sidebar-item.recent-post li {
  color: #666666;
}

.sidebar-item.recent-post li {
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.sidebar-item.recent-post li:last-child {
  border: medium none;
  margin: 0;
  padding: 0;
}

.sidebar-item.recent-post li:last-child {
  margin: 0;
}

.sidebar-item.recent-post li .thumb {
  display: table-cell;
  padding-top: 5px;
  vertical-align: top;
  width: 80px;
}

.sidebar-item.recent-post .thumb img {
  width: 100%;
}

.sidebar-item.recent-post li .info {
  color: #cccccc;
  display: table-cell;
  line-height: 26px;
  padding: 0 0 0 20px !important;
  vertical-align: top;
  box-shadow: inherit;
}

/** Vacancy-style **/

.contact-form h2 {
  background-color: var(--thm-badge);
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  color: var(--thm-badge-color);
  padding: 8px 0 10px;
}
.contact-form .vacancy-form form {
  text-align: left;
  margin-top: 30px;
}
.contact-form .vacancy-form form p {
  margin-bottom: 20px;
}
.contact-form .vacancy-form input {
  width: 100%;
}

.contact-form .vacancy-form .form-group {
  margin-bottom: 1rem;
}

.contact-form .vacancy-form input[type="text"],
.contact-form .vacancy-form input[type="email"],
.contact-form .vacancy-form input[type="number"],
.contact-form textarea {
  background-color: #F8F8F8;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  font-size: 14px;
  padding: 0 15px;
  border: none;
}

.contact-form .vacancy-form input[type="text"]:focus,
.contact-form textarea:focus {
  border: none;
  box-shadow: none;
}

.contact-form .vacancy-form input[type="text"],
.contact-form .vacancy-form input[type="email"],
.contact-form .vacancy-form input[type="number"] {
  height: 55px;
}

.contact-form .vacancy-form textarea {
  padding: 20px 10px;
  width: 100%;
}
.contact-form .vacancy-form input:not[type="submit"] {
  height: 59px;
}
.contact-form .vacancy-form input[type="submit"] {
  border: 2px solid #ffffff;
  color: #ffffff;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.contact-form .vacancy-form input[type="submit"]:hover {
  border-color: var(--thm-base);
}
@media screen and (min-width: 992px) {
  .contact-form .vacancy-form {
    margin-left: 30px;
  }
}

.vacancy-content {
  margin-bottom: 30px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  padding: 40px;
  border: 1px solid var(--thm-rgba);
}
.vacancy-content span {
  color: var(--thm-base);
  margin-bottom: 10px;
  font-weight: 600;
  display: block;
}
.vacancy-content .button-primary {
  margin-top: 10px;
}

.sidebar .widget-bg {
  background-color: #F8F8F8;
  border-bottom: 3px solid #F15B43;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  margin-bottom: 50px;
  padding: 30px;
}
.sidebar .widget-bg h3 {
  margin-bottom: 15px;
  font-weight: 600;
}

.sidebar .widget-bg p {
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

.sidebar .widget-icon {
  background-color: #F15B43;
  border-radius: 100%;
  color: #ffffff;
  height: 100px;
  width: 100px;
  text-align: center;
  line-height: 100px;
  font-size: 48px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

.sidebar .or-style {
  color: #F15B43;
  display: table;
  font-size: 18px;
  font-weight: 400;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-left: 70px;
  padding-right: 70px;
  margin-bottom: 20px;
}
.sidebar .or-style:before, .sidebar .or-style:after {
  background-color: #d1d1d1;
  content: "";
  width: 60px;
  height: 1px;
  position: absolute;
  top: 50%;
  display: inline-block;
}
.sidebar .or-style:before {
  left: 0;
}
.sidebar .or-style:after {
  right: 0;
}


/***

====================================================================
                        Inner-Page
====================================================================

***/


/** page-title **/

.page-title {
  position: relative;
  padding: 50px 0;
}


.page-title {
  fill: #FDF6F8;
  background: #FDF6F8;
  background: -moz-linear-gradient(90deg, #FDF6F8 0%, #df2e2e 100%);
  background: -webkit-linear-gradient(90deg, #FDF6F8 0%, #df2e2e 100%);
  background: -o-linear-gradient(90deg, #FDF6F8 0%, #df2e2e 100%);
  background: -ms-linear-gradient(90deg, #FDF6F8 0%, #df2e2e 100%);
  background: linear-gradient(90deg, #FDF6F8 0%, #df2e2e 100%);
}

.page-title:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  animation: fadeBoth 6s infinite;
}

.page-title:before {
  fill: #FDF6F8;
  background: #FDF6F8;
  background: -moz-linear-gradient(270deg, #FDF6F8 0%, #df2e2e 100%);
  background: -webkit-linear-gradient(270deg, #FDF6F8 0%, #df2e2e 100%);
  background: -o-linear-gradient(270deg, #FDF6F8 0%, #df2e2e 100%);
  background: -ms-linear-gradient(270deg, #FDF6F8 0%, #df2e2e 100%);
  background: linear-gradient(270deg, #FDF6F8 0%, #df2e2e 100%);
}

.page-title .bg-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.page-title .bg-layer:before {
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.6;
}

.page-title .content-box h1 {
  display: block;
  font-size: 65px;
  line-height: 75px;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-title .content-box .bread-crumb li {
  position: relative;
  display: inline-block;
  padding-right: 18px;
  margin-right: 5px;
  font-size: 20px;
  line-height: 30px;
  font-family: 'Fredoka', sans-serif;
  color: #fff;
  font-weight: 500;
}

.page-title .content-box .bread-crumb li:last-child {
  padding: 0px !important;
  margin: 0px !important;
}

.page-title .content-box .bread-crumb li a {
  display: inline-block;
  color: #fff;
}

.page-title .content-box .bread-crumb li:before {
  position: absolute;
  content: '\f054';
  font-family: "Font Awesome 5 Pro";
  font-size: 12px;
  font-weight: 300;
  top: 2px;
  right: 0px;
  color: #fff;
}

.page-title .content-box .bread-crumb li:last-child:before {
  display: none;
}

@media only screen and (max-width: 767px) {

  .page-title{
    padding: 70px 0px 80px 0px;
  }

  .page-title .content-box h1{
    font-size: 50px;
    line-height: 60px;
  }

}

@media only screen and (max-width: 599px) {

  .page-title .content-box h1,
  .page-title h1{
    font-size: 45px;
    line-height: 50px;
  }

}

@media only screen and (max-width: 480px) {

  .page-title .content-box h1,
  .page-title h1{
    font-size: 40px;
    line-height: 50px;
  }

}

.page__banner .banner__tag {
    display: none
}

.page__banner {
  --pb-height: 900px;
  --pb-banner-title-size: 60px
}

.page__banner,
.page__banner .banner__slider--item {
  position: relative;
  height: var(--pb-height)
}

.page__banner {
  --banner-title-size: 60px;
  --banner-tag-size: 16px;
  --banner-title-max-size: 800px;
  --banner-bottom-gap: 12vh;
  position: relative;
  background-color: #FFFFFF;
  overflow: hidden;
  color: #fff;
}

.page__banner::before, .page__banner::after {
  position: absolute;
  content: "";
  z-index: 2;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.2);
  background: linear-gradient(0deg,rgba(27,35,34,.2) 0%,rgba(27,35,34,.2) 30%,rgba(27,35,34,.2) 60%,rgba(27,35,34,.7) 100%);
  pointer-events: none;
}

.banner__caption {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  bottom: 0;
  display: grid;
}

.page__banner .banner__caption {
  z-index: 3
}

.wrapper {
  position: relative;
  width: 100%;
  margin-inline: auto;
  /* padding-inline: 100px; */
  max-width: 1320px;
}

.banner__caption .wrapper {
  justify-items: start;
  align-content: center;
  gap: 20px;
  padding-block-end: var(--banner-bottom-gap);
}

.page__banner .banner__caption .wrapper {
  padding-block-end: 0
}

.page__banner .banner__title {
  font-size: var(--pb-banner-title-size);
  max-width: 850px;
  color: #ffffff;
  padding-top: 30px;
}

.page__banner::after {
  top: 0;
  background: linear-gradient(90deg, rgba(19, 38, 35, .6) 0%, rgba(0, 0, 0, 0) 75%)
}

@media(max-width:2000px) {
  .page__banner {
      --pb-height: 440px
  }
}

@media(max-width:1600px) {
  .page__banner {
      --pb-height: 650px;
      --pb-banner-title-size: 60px
  }
}

@media(max-width:1400px) {
  .page__banner {
      --pb-height: 600px;
      --pb-banner-title-size: 55px
  }
}

@media(max-width:640px) {
  .page__banner {
      --pb-height: 450px;
      --pb-banner-title-size: 40px;
      --banner-tag-size: 13px
  }

  .page__banner::after {
      display: none
  }

  .page__banner::before {
      background: rgba(0, 0, 0, .4)
  }
}

.breadcrumb {
  --breadcrumb-theme: var(--clr-dark);
  --breadcrumb-f-size: 14px;
  --breadcrumb-item-gap: 10px;
  --breadcrumb-arrow-inline-size: 12px;
  --breadcrumb-arrow-block-size: 8px;
  --breadcrumb-top-offset: 80px;
  --breadcrumb-theme: white;
}

.breadcrumb.white {
  --breadcrumb-theme: white
}

.breadcrumb.top--offset {
  position: absolute;
  width: 100%;
  z-index: 5;
  transform: translateY(calc(var(--breadcrumb-top-offset)*-1))
}

.breadcrumb ul,
.breadcrumb li {
  gap: var(--breadcrumb-item-gap);
  flex-wrap: wrap
}

.breadcrumb li {
  position: relative;
  display: flex;
  align-items: center
}

.breadcrumb li:not(:last-child)::after {
  content: "";
  width: var(--breadcrumb-arrow-inline-size);
  height: var(--breadcrumb-arrow-block-size);
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAYCAYAAACSuF9OAAAACXBIWXMAACE4AAAhOAFFljFgAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAGFSURBVHgBzZYxboMwFIbtQgYQAxUMHekNwpaR3CDdurVHaE/Q3KC9QY6QseoU9QRJt3YjYyWQPAEDiP4vcqiFWjJh55cQvMcbfvn/bNliGuRDnue9uq67L4oiHZq9YOObmVqWtcVn0rbtCnXETBqCBPmiD855ZNv2amjYYiOrqiqBqL5hZiFbEWof0b0xE4ZIZVnuHMe5hKmZbM1g6v0vnjjTqDAMiaWpLEVd17EQIlVndDDUCQZuALaQpT+ZTNb9GS2RHSV5+kJ0t7J11edJqyESePrs84Q6Rf+DCq0MqQJPG7wSWXY82fixZAYElvZYpWN54AmH5pzDUMvORy9ad9kpYdU4NxhZhMjulDptmiY2CXV3SNLZRGYIaiORwcwT+z2xSQ/9E1ubgiBY0EZSnqX6X2tkdBfC3WhD1xCqiZs8z6/VGa2R9c2Am3l/xmaahGie8YqU1qNJbu6HuFE1OkOSmy2i8mVrl2VZ/N+8DobIyOEORNzQnYiZFq0SYlsjquTU7A+9HaAxnyz32QAAAABJRU5ErkJggg==");
  background-size: contain;
  background-repeat: no-repeat
}

.breadcrumb.white li:not(:last-child)::after {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAZCAYAAABZ5IzrAAAACXBIWXMAACE4AAAhOAFFljFgAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAADlSURBVHgB7ZbhDYJADIXfOcGN0BEYATZwA1dgA9xAJlA3cATdwBFwA9ygthGS43LBkCi9H37JC73kEl6aRwvwJwOY2YsOogLWiAkSdfxGn37u/ga/xw9SSHSCNdKVmqfUsEZMnCNTJSwZgt0FhrQmWDIEvA9MXWFNIk8NrBETbY55ugeG+jFPToo9bCDRLjjfnHOVGmLkQ7vGpF6C1w4d8R0clkGiMjg/RBWskEZcoi+NYIXOHs5lt8nLi8iM3fbn6b/RuM88rNDdlRqGVmaanHKzjcy0sCKVm7n7a0xqCuonPgy/F5o3T7R5069YAAAAAElFTkSuQmCC")
}

.breadcrumb a {
  font-size: var(--breadcrumb-f-size);
  color: var(--breadcrumb-theme);
}

.breadcrumb a:not([href]):not([class]) {
  color: var(--breadcrumb-theme);
}

.breadcrumb a:hover,
.breadcrumb a:not([href]):not([class]):hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page__banner--none .breadcrumb {
  --crumb-block-padding: 40px;
  padding-block: var(--crumb-block-padding)
}

.page__banner--none .breadcrumb a {
  font-family: var(--ff-clash)
}

@media(max-width:640px) {
  .breadcrumb {
      --breadcrumb-f-size: 12px;
      --breadcrumb-item-gap: 6px;
      --breadcrumb-arrow-inline-size: 10px;
      --breadcrumb-arrow-block-size: 6px;
      --breadcrumb-top-offset: 50px
  }

  .breadcrumb li:nth-child(3) a,
  .breadcrumb li:last-child a {
      max-width: 140px;
      text-overflow: ellipsis;
      white-space: nowrap;
      overflow: hidden
  }

  .page__banner--none .breadcrumb {
      --crumb-block-padding: 20px
  }
}

.img-cover, .vid-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  user-select: none;
  position: absolute;
  left: 0;
}


/***
=============================================
  Single Sidebar Area style
=============================================
***/

.single-sidebar .sidebar-lists {
  display: block;
}

.single-sidebar .sidebar-lists .allservice{
  margin-bottom: 10px;
}

.single-sidebar .sidebar-lists .allservice a {
  background: #f9f9f9 none repeat scroll 0 0;
  color: #1c1c1c;
  display: block;
  font-size: 14px;
  font-weight: 700;
  padding: 16px 20px 16px;
  text-transform: none;
}

.single-sidebar .sidebar-lists .allservice a i {
  color: #999999;
  float: right;
  font-size: 18px;
  margin: 4px 0;
  transition: all 500ms ease;
}

.single-sidebar .sidebar-lists li{
  border-bottom: 1px solid #ffffff;
  position: relative;
}
.single-sidebar .sidebar-lists li a {
  background: #f9f9f9 none repeat scroll 0 0;
  display: block;
  padding: 16px 20px 16px;
  color: #1c1c1c;
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
  position: relative;
  transition: all 500ms ease;
  transition-delay: 0.10s;
}
.single-sidebar .sidebar-lists li a::before {
  background: #ffd700 none repeat scroll 0 0;
  content: "";
  height: 30px;
  left: 0;
  position: absolute;
  top: 14px;
  width: 0px;
  z-index: 1;
  transition: all 500ms ease;
  transition-delay: 0.5s;
}
.single-sidebar .sidebar-lists li a:hover,
.single-sidebar .sidebar-lists li.active a{
  background: #df2e2e;
  color: #ffffff;
}
.single-sidebar .sidebar-lists li a:hover::before,
.single-sidebar .sidebar-lists li.active a::before{
  width: 5px;
}

.single-sidebar .sidebar-lists .allservice a:hover i{
  color: #fff;
}

@media only screen and (max-width: 767px) {
  .sidebar {
    margin-top: 30px;
    display: none;
  }

  .vacancy-section .sidebar {
    display: block;
    height: auto !important;
  }

  .vacancy-section .sidebar .inner-wrapper-sticky {
    position: unset !important;
    transform: none !important;
    width: 100% !important;
  }

  .vacancy-section .sidebar .widget-bg {
    margin-bottom: 0;
  }
}


/** L&C-style-section **/

.lc-item-block {
  margin-bottom: 50px;
}

.lc-item-block:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 767px) {

  .lc-item-block [class*="col-"] .project-block-one .inner-box .image-box,
  .lc-item-block [class^="col-"] .project-block-one .inner-box .image-box {
    margin-bottom: 30px;
  }

  .lc-item-block [class*="col-"]:last-child .project-block-one .inner-box .image-box,
  .lc-item-block [class^="col-"]:last-child .project-block-one .inner-box .image-box {
    margin-bottom: 0;
  }

}


/** procedure-page-section **/

.procedure-section .news-style .content-side .item-box {
  display: inline-block;
  margin-bottom: 50px;
}

.procedure-section .news-style .content-side .item-box:last-child {
  margin-bottom: 0;
}

.procedure-section .news-style .info .title-meta,
.item-box .info  .title-meta {
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 20px;
  padding-bottom: 0;
}

.procedure-section .news-style .content-side.news-detail .item .thumb {
  width: 300px;
  float: left;
  margin: 5px 20px 20px 0;
}

.procedure-section .news-style .content-side .item:hover .thumb img {
  -webkit-transform: none;
  transform: none;
}

@media only screen and (max-width: 575px) {

  .procedure-section .news-style .content-side.news-detail .item .thumb {
    width: 100%;
    margin: 0 0 25px;
    float: none;
  }

}


/** faq-style-section **/

.faq-style.faq-page {
  padding: 124px 0px 120px 0px;
}

.faq-style.faq-page:before {
  display: none;
}

.faq-style.faq-page .content_block_three .content-box {
  margin: 0px;
}

.faq-form-section {
  position: relative;
}

.faq-form-section .form-inner .form-group {
  position: relative;
  margin-bottom: 30px;
}

.faq-form-section .form-inner .form-group:last-child {
  margin-bottom: 0px;
}

.faq-form-section .form-inner .form-group input[type='text'],
.faq-form-section .form-inner .form-group input[type='email'],
.faq-form-section .form-inner .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  background: #fff;
  border: 1px solid #fff;
  font-size: 16px;
  color: #6E6E6E;
  font-family: 'Poppins', sans-serif;
  padding: 10px 30px;
  border-radius: 5px;
  text-align: left;
  transition: all 500ms ease;
}

.faq-form-section .form-inner .form-group textarea {
  height: 170px;
  resize: none;
}

.faq-form-section .form-inner {
  max-width: 850px;
  margin: 0 auto;
}

@media only screen and (max-width: 1200px){

  .faq-section .image-box{
    margin: 0px;
  }

}

@media only screen and (max-width: 991px){

  .faq-style-two .video-content{
    margin-right: 0px;
    margin-bottom: 30px;
  }

  .faq-style-two.faq-page .content_block_three .content-box{
    margin-bottom: 30px;
  }

  .faq-style-two.faq-page{
    padding-bottom: 90px;
  }

}

@media only screen and (max-width: 767px) {

  .faq-style{
    padding-top: 0px;
  }

  .faq-style.faq-page{
    padding: 64px 0px 40px 0px;
  }

}

.gallery-page-section {
  position: relative;
  padding: 110px 0px 90px 0px;
}

.gallery-page-section .project-block-one .inner-box {
  margin-bottom: 30px;
}

.gallery-page-section .filters {
  position: relative;
  display: block;
  margin-bottom: 55px;
}

.gallery-page-section .filters .filter-tabs li {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  color: #333;
  margin: 0px 15px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 500ms ease;
}

@media only screen and (max-width: 767px) {

  .gallery-page-section{
    padding: 60px 0px 40px 0px;
  }

}


/** page-title **/

.page-title {
  position: relative;
}

.page-title .bg-layer {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.page-title .bg-layer:before {
  position: absolute;
  content: '';
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
}

.page-title h1 {
  position: relative;
  display: block;
  font-size: 65px;
  line-height: 70px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 25px;
}

.page-title .post-info li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 38px;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  padding-left: 26px;
}

.page-title .post-info li:last-child {
  margin: 0px !important;
}

.page-title .post-info li i {
  position: absolute;
  left: 0px;
  top: 3px;
}

.page-title .post-info li a {
  display: inline-block;
  color: #fff;
}

.page-title .post-info li a:hover {}

.page-title .post-info li:before {
  position: absolute;
  content: '';
  background: #fff;
  width: 1px;
  height: 20px;
  top: 2px;
  right: -20px;
}

.page-title .post-info li:last-child:before {
  display: none;
}


/** blog-details **/

.blog-details-content {
  position: relative;
  display: block;
}

.blog-details-content p {
  margin-bottom: 26px;
}

.blog-details-content p:last-child {
  margin-bottom: 0px;
}

.blog-details-content .content-one .text {
  margin-bottom: 60px;
}

.blog-details-content .content-one .image-box .image {
  position: relative;
  display: block;
  border-radius: 15px;
}

.blog-details-content .content-one .image-box .image img {
  width: 100%;
  border-radius: 15px;
}

.blog-details-content .content-one {
  margin-bottom: 64px;
}

.blog-details-content .content-two h3 {
  display: block;
  font-size: 30px;
  line-height: 40px;
  font-weight: 500;
  margin-bottom: 30px;
}

.blog-details-content .content-two .list-style-one li {
  float: left;
  width: 50%;
}

.blog-details-content .content-two {
  margin-bottom: 65px;
}

.blog-details-content .content-three .image-box {
  position: relative;
  display: block;
  border-radius: 15px;
  margin-bottom: 60px;
}

.blog-details-content .content-three .image-box img {
  width: 100%;
  border-radius: 15px;
}

.blog-details-content .content-three {
  margin-bottom: 60px;
}

.blog-details-content .post-tags .tags li {
  position: relative;
  display: inline-block;
  font-size: 18px;
  line-height: 28px;
  font-family: 'Fredoka', sans-serif;
  color: #6E6E6E;
}

.blog-details-content .post-tags .tags li a {
  display: inline-block;
  color: #6E6E6E;
}

.blog-details-content .post-tags .tags li a:hover {}

.blog-details-content .post-tags .tags li h5 {
  font-weight: 500;
  color: #000;
}

.blog-details-content .post-tags {
  margin-bottom: 65px;
}

.blog-details-content .author-box {
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 0px 7px 50px rgba(0, 0, 0, 0.07);
  border-radius: 15px;
  padding: 42px 50px 45px 190px;
  margin-bottom: 65px;
}

.blog-details-content .author-box .author-thumb {
  position: absolute;
  left: 40px;
  top: 40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

.blog-details-content .author-box .author-thumb img {
  width: 100%;
  border-radius: 50%;
}

.blog-details-content .author-box h3 {
  display: block;
  font-size: 24px;
  line-height: 34px;
  font-weight: 500;
  margin-bottom: 0px;
}

.blog-details-content .author-box .designation {
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 10px;
}

.blog-details-content .comments-form-area h3 {
  display: block;
  font-size: 30px;
  line-height: 40px;
  font-weight: 500;
  margin-bottom: 37px;
}

.blog-details-content .comments-form-area form .form-group {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.blog-details-content .comments-form-area form .form-group:last-child {
  margin-bottom: 0px;
}

.blog-details-content .comments-form-area form .form-group input[type='text'],
.blog-details-content .comments-form-area form .form-group input[type='email'],
.blog-details-content .comments-form-area form .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  background: #F7F5F1;
  border-radius: 5px;
  border: 1px solid #F7F5F1;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  color: #6E6E6E;
  padding: 10px 30px;
  transition: all 500ms ease;
}

.blog-details-content .comments-form-area form .form-group textarea {
  height: 170px;
  resize: none;
  padding-top: 15px;
}

.blog-details-content .comments-form-area form .form-group input:focus,
.blog-details-content .comments-form-area form .form-group textarea:focus {}


/** Client-detail-section **/

.client-detail {
  display: flex;
  height: 100%;
}

.client-detail .card{
  border:none;
  border-radius: var(--border-radius-lg);
  flex: 2 1 auto;
  margin-bottom: 25px;
}
.client-detail .card-img-top{
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  padding: 30px;
}

.client-detail .card-body .card-title{
  font-size: 25px;
  text-align: center;
  font-weight: 300;
}

.client-detail .card-btn .btn-primary{
  padding: 11px 14px;
  font-size: 14px;
  background-color: var(--thm-base);
  border: none;
}

.client-detail .card-btn .btn-primary:hover {
  background-color: #232323;
  color: #ffffff;
}



/** contact-info-section **/

.contact-info-section {
  position: relative;
  padding-top: 124px;
}

.info-block-one .inner-box {
  position: relative;
  display: block;
  background: #FDF6F8;
  border-radius: 15px;
  padding: 50px 50px 45px 50px;
  transition: all 500ms ease;
}

.info-block-one .inner-box:hover {
  transform: translateY(-10px);
}

.info-block-one .inner-box .icon-box {
  position: relative;
  display: inline-block;
  width: 90px;
  height: 90px;
  line-height: 90px;
  background: #fff;
  font-size: 40px;
  color: #FDF6F8;
  border-radius: 50%;
  text-align: center;
  margin-bottom: 26px;
  z-index: 1;
}

.info-block-one .inner-box .icon-box:before {
  position: absolute;
  content: '';
  background: #000;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  transform: scale(0, 0);
  z-index: -1;
  border-radius: 50%;
  transition: all 500ms ease;
}

.info-block-one .inner-box:hover .icon-box:before {
  transform: scale(1, 1);
}

.info-block-one .inner-box h3 {
  display: block;
  font-size: 24px;
  line-height: 34px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 20px;
}

.info-block-one .inner-box p {
  font-size: 16px;
  line-height: 28px;
  color: #fff;
}

.info-block-one .inner-box p a {
  color: #fff;
}

.info-block-one .inner-box p a:hover {
  text-decoration: underline;
}

.info-column:nth-child(2) .info-block-one .inner-box .icon-box {
  color: #9C44E1;
}

.info-column:last-child .info-block-one .inner-box .icon-box {
  color: var(--thm-base);
}

.info-column:nth-child(2) .info-block-one .inner-box {
  background: #9C44E1;
}

.info-column:last-child .info-block-one .inner-box {
  background: var(--thm-base);
}


/** contact-section **/

.contact-section {
  position: relative;
}

.contact-section .content-box {
  display: block;
  margin-right: 70px;
}

.contact-section .content-box h3 {
  font-size: 30px;
  line-height: 32px;
  font-weight: 500;
  margin-bottom: 35px;
}

.contact-section .content-box p {
  margin-bottom: 35px;
}

.contact-section .content-box .social-links li {
  position: relative;
  display: inline-block;
  float: left;
  margin-right: 10px;
}

.contact-section .content-box .social-links li:last-child {
  margin: 0px !important;
}

.contact-section .content-box .social-links li a {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  color: #fff;
  text-align: center;
  background: #3B5998;
  border-radius: 50%;
}

.contact-section .content-box .social-links li:nth-child(2) a {
  background: #55ACEE;
}

.contact-section .content-box .social-links li:nth-child(3) a {
  background: #DC4E41;
}

.contact-section .content-box .social-links li:last-child a {
  background: #3F729B;
}

.contact-section .form-inner form .form-group {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.contact-section .form-inner form .form-group:last-child {
  margin-bottom: 0px;
}

.contact-section .form-inner form .form-group input[type='text'],
.contact-section .form-inner form .form-group input[type='email'],
.contact-section .form-inner form .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  background: #FFFFFF;
  border-radius: 5px;
  border: 1px solid #F7F5F1;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  color: #6E6E6E;
  padding: 10px 30px;
  transition: all 500ms ease;
}

.contact-section .form-inner form .form-group textarea {
  height: 170px;
  resize: none;
  padding-top: 15px;
}

.contact-form {
  background-color: #ffffff;
  box-shadow: 0px 0px 13px -4px rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  padding: 50px;
  position: relative;
  text-align: center;
}
.contact-form h2 {
  display: inline-block;
  padding: 10px 30px;
  margin-bottom: 50px;
}
.contact-form form .form-group {
  margin-bottom: 30px;
}
.contact-form form .form-group input,
.contact-form form .form-group textarea {
  border: none;
}
.contact-form form .form-grop-file {
  position: relative;
  text-align: initial;
}
.contact-form form .form-grop-file label {
  background-color: #F8F8F8;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  color: #8F918F;
  margin-bottom: 0;
  height: 55px;
  width: 100%;
  line-height: 55px;
  font-weight: 400;
  font-size: 14px;
  padding: 0 15px;
}
.contact-form form .form-grop-file input[type=file] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
  z-index: -9;
}
.contact-form form .form-grop-file i {
  position: absolute;
  right: 30px;
  top: 17px;
  font-size: 20px;
}

.contact-details-list .item {
  display: flex;
  height: 100%;
}

.contact-details-list .item .item-info {
  flex: 2 1 auto;
}

.contact-details-list .item {

  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  -ms-border-radius: 25px;
  border-radius: 25px;
  border: 1px solid rgba(241, 91, 67, 0.25);
  padding: 25px 35px 28px 35px;
  list-style: none;
  margin-bottom: 30px;
  position: relative;
}

.contact-details-list .item:last-child {
  margin-bottom: 0;
}

.contact-details-list .icon {
  background-color: #F15B43;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: #ffffff;
  display: inline-block;
  font-size: 40px;
  line-height: 80px;
  height: 80px;
  text-align: center;
  width: 80px;
  margin-bottom: 10px;
}

.contact-details-list .details-content h3 {
  margin-bottom: 8px;
}
.contact-details-list .details-content span {
  display: block;
}
.contact-details-list .details-content span a {
  color: var(--thm-base);
}


@media only screen and (max-width: 991px){

  .contact-details-list {
    margin-bottom: 30px;
  }

  .contact-details-list:last-child {
    margin-bottom: 0;
  }

  .contact-info-section {
    padding-top: 70px;
  }

  .contact-section .content-box{
    margin-bottom: 40px;
    margin-right: 0;
  }

}

@media only screen and (max-width: 767px) {

  .header-top .top-inner .top-left p{
    margin-right: 0px;
  }

}

@media screen and (max-width: 575px) {

  .contact-form {
    padding: 30px 20px;
    margin-top: 60px;
  }
  .contact-form form .form-grop-file label {
    height: 42px;
    line-height: 42px;
  }
  .contact-form form .form-grop-file i {
    top: 10px;
  }

}

@media screen and (max-width: 479px) {
  .contact-details-list ul li {
    padding: 15px 20px 20px 20px;
  }
  .contact-details-list .icon {
    font-size: 18px;
    line-height: 45px;
    height: 45px;
    width: 45px;
  }
  .contact-details-list .details-content {
    width: -moz-calc(100% - 45px);
    width: -webkit-calc(100% - 45px);
    width: calc(100% - 45px);
  }
}


/*** Organization Flow Chart Style ***/

ol.organizational-chart,
ol.organizational-chart ol,
ol.organizational-chart li,
ol.organizational-chart li > div {
    position: relative;
}

ol.organizational-chart,
ol.organizational-chart ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

ol.organizational-chart {
    text-align: center;
}

ol.organizational-chart ol {
    padding-top: 1em;
}

ol.organizational-chart ol:before,
ol.organizational-chart ol:after,
ol.organizational-chart li:before,
ol.organizational-chart li:after,
ol.organizational-chart > li > div:before,
ol.organizational-chart > li > div:after {
    background-color: #b7a6aa;
    content: '';
    position: absolute;
}

ol.organizational-chart .bottom-chart:before{
  /* display: none; */
}

ol.organizational-chart ol > li {
    padding: 1em 0 0 1em;
}

ol.organizational-chart > li ol:before {
    height: 1em;
    left: 50%;
    top: 0;
    width: 3px;
}

ol.organizational-chart > li ol:after {
    height: 3px;
    left: 3px;
    top: 1em;
    width: 50%;
}

ol.organizational-chart > li ol > li:not(:last-of-type):before {
    height: 3px;
    left: 0;
    top: 2em;
    width: 1em;
}

ol.organizational-chart > li ol.bottomchart > li:first-child:not(:last-of-type):before {
  display: none;
}

ol.organizational-chart > li ol > li:not(:last-of-type):after {
    height: 100%;
    left: 0;
    top: 0;
    width: 3px;
}

ol.organizational-chart > li ol.bottom-chart > li:not(:last-of-type):after {
  height: 100%;
  left: 0;
  top: 32px;
  width: 3px;
}

ol.organizational-chart > li ol > li:last-of-type:before {
    height: 3px;
    left: 0;
    top: 2em;
    width: 1em;
}

ol.organizational-chart > li ol > li:last-of-type:after {
    height: 2em;
    left: 0;
    top: 0;
    width: 3px;
}

ol.organizational-chart li > div {
    background-color: #fff;
    border-radius: 3px;
    min-height: 2em;
    padding: 0.5em;
}

/*** PRIMARY ***/
ol.organizational-chart > li > div {
    background-color: #a2ed56;
    margin-right: 1em;
}

ol.organizational-chart > li > div:before {
    bottom: 2em;
    height: 3px;
    right: -1em;
    width: 1em;
}

ol.organizational-chart > li > div:first-of-type:after {
    bottom: 0;
    height: 2em;
    right: -1em;
    width: 3px;
}

ol.organizational-chart > li > div + div {
    margin-top: 1em;
}

ol.organizational-chart > li > div + div:after {
    height: calc(100% + 1em);
    right: -1em;
    top: -1em;
    width: 3px;
}

/*** SECONDARY ***/
ol.organizational-chart > li > ol:before {
    left: inherit;
    right: 0;
}

ol.organizational-chart > li > ol:after {
    left: 0;
    width: 100%;
}

ol.organizational-chart > li > ol.bottom-chart:after {
  left: 0;
  width: 0;
}

ol.organizational-chart > li > ol > li > div {
    background-color: #83e4e2;
}

/*** TERTIARY ***/
ol.organizational-chart > li > ol > li > ol > li > div {
    background-color: #fd6470;
}

/*** QUATERNARY ***/
ol.organizational-chart > li > ol > li > ol > li > ol > li > div {
    background-color: #fca858;
}

/*** QUINARY ***/
ol.organizational-chart > li > ol > li > ol > li > ol > li > ol > li > div {
    background-color: #fddc32;
}

/*** MEDIA QUERIES ***/
@media only screen and ( min-width: 64em ) {

    ol.organizational-chart {
        margin-left: -1em;
        margin-right: -1em;
    }

    /* PRIMARY */
    ol.organizational-chart > li > div {
        display: inline-block;
        float: none;
        margin: 0 1em 1em 1em;
        vertical-align: bottom;
    }

    ol.organizational-chart > li > div:only-of-type {
        margin-bottom: 0;
        width: calc((100% / 1) - 2em - 4px);
    }

    ol.organizational-chart > li > div:first-of-type:nth-last-of-type(2),
    ol.organizational-chart > li > div:first-of-type:nth-last-of-type(2) ~ div {
        width: calc((100% / 2) - 2em - 4px);
    }

    ol.organizational-chart > li > div:first-of-type:nth-last-of-type(3),
    ol.organizational-chart > li > div:first-of-type:nth-last-of-type(3) ~ div {
        width: calc((100% / 3) - 2em - 4px);
    }

    ol.organizational-chart > li > div:first-of-type:nth-last-of-type(4),
    ol.organizational-chart > li > div:first-of-type:nth-last-of-type(4) ~ div {
        width: calc((100% / 4) - 2em - 4px);
    }

    ol.organizational-chart > li > div:first-of-type:nth-last-of-type(5),
    ol.organizational-chart > li > div:first-of-type:nth-last-of-type(5) ~ div {
        width: calc((100% / 5) - 2em - 4px);
    }

    ol.organizational-chart > li > div:before,
    ol.organizational-chart > li > div:after {
        bottom: -1em!important;
        top: inherit!important;
    }

    ol.organizational-chart > li > div:before {
        height: 1em!important;
        left: 50%!important;
        width: 3px!important;
    }

    ol.organizational-chart > li > div:only-of-type:after {
        display: none;
    }

    ol.organizational-chart > li > div:first-of-type:not(:only-of-type):after,
    ol.organizational-chart > li > div:last-of-type:not(:only-of-type):after {
        bottom: -1em;
        height: 3px;
        width: calc(50% + 1em + 3px);
    }

    ol.organizational-chart > li > div:first-of-type:not(:only-of-type):after {
        left: calc(50% + 3px);
    }

    ol.organizational-chart > li > div:last-of-type:not(:only-of-type):after {
        left: calc(-1em - 3px);
    }

    ol.organizational-chart > li > div + div:not(:last-of-type):after {
        height: 3px;
        left: -2em;
        width: calc(100% + 4em);
    }

    /* SECONDARY */
    ol.organizational-chart > li > ol {
        display: flex;
        flex-wrap: nowrap;
    }

    ol.organizational-chart > li > ol:before,
    ol.organizational-chart > li > ol > li:before {
        height: 1em!important;
        left: 50%!important;
        top: 0!important;
        width: 3px!important;
    }

    ol.organizational-chart > li > ol:after {
        display: none;
    }

    ol.organizational-chart > li > ol > li {
        flex-grow: 1;
        padding-left: 1em;
        padding-right: 1em;
        padding-top: 1em;
    }

    ol.organizational-chart > li > ol > li:only-of-type {
        padding-top: 0;
    }

    ol.organizational-chart > li > ol > li:only-of-type:before,
    ol.organizational-chart > li > ol > li:only-of-type:after {
        display: none;
    }

    ol.organizational-chart > li > ol > li:first-of-type:not(:only-of-type):after,
    ol.organizational-chart > li > ol > li:last-of-type:not(:only-of-type):after {
        height: 3px;
        top: 0;
        width: 50%;
    }

    ol.organizational-chart > li > ol > li:first-of-type:not(:only-of-type):after {
        left: 50%;
    }

    ol.organizational-chart > li > ol > li:last-of-type:not(:only-of-type):after {
        left: 0;
    }

    ol.organizational-chart > li > ol > li + li:not(:last-of-type):after {
        height: 3px;
        left: 0;
        top: 0;
        width: 100%;
    }

}


/*** Regional Conference ***/

/* divider */
.spacer-single {
  width: 100%;
  height: 30px;
  display: block;
  clear: both;
}

/* owl carousel */
#slider-carousel .owl-thumbs{
  padding:3px;
  margin-bottom:30px;
  margin-top: 15px;
  width: auto;
  display: block;
}

#slider-carousel .owl-thumbs  button{
  opacity:1;
  border: none !important;
  padding: 0;
  margin-right: 15px;
  margin-bottom: 20px;
  opacity: 1;
  overflow: hidden;
  opacity: .5;
}
#slider-carousel .owl-thumb-item.active{
  opacity:1;
}
#slider-carousel button.owl-thumb-item.active{
  -webkit-box-shadow: 5px 5px 20px 0px rgba(0,0,0,0.5);
  -moz-box-shadow: 5px 5px 20px 0px rgba(0,0,0,0.5);
  box-shadow: 5px 5px 20px 0px rgba(0,0,0,0.5);
}
#slider-carousel .owl-thumb-item img{   
  background:#fff;
  padding:0;
  width:120px;
}

#slider-carousel .owl-nav.disabled {
  display: none;
}

/* status */
.post-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px 0 20px 0;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  margin-bottom: 30px;
}

.post-status li {
  font-weight: 600;
  font-size: 15px;
  color: #2d373c;
  font-family: "Raleway", sans-serif;
  padding-top: 10px;
}

.post-status li i {
  margin-right: 8px;
}
