@charset "UTF-8";
/*===================================================================
[Table Of Content]

    * Imported CSS
    * Typography CSS
    * Common CSS
    * Main Navigation CSS
    * Header CSS
    * Home Slider CSS
    * Team CSS
    * Brand Logo CSS
    * Form CSS
    * Blog CSS
    * Contact CSS
    * Footer CSS

=====================================================================*/
/*
-----------------------------------------------------------------------
  Typography CSS
-----------------------------------------------------------------------
*/
body {
  color: #121212;
  font-size: 16px;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  line-height: 1.75;
  margin: 0;
  overflow-x: hidden;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
@media only screen and (max-width: 1199px) {
  body {
    font-size: 15px;
  }
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  color: #010E34;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
  margin-top: 0;
}

a {
  color: #FEAD00;
  text-decoration: none;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
a:hover, a:active, a:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #025d2b;
  outline: none;
  text-decoration: none;
}
a img {
  border: none;
}

button {
  text-decoration: none;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
button:hover, button:active, button:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
  text-decoration: none;
}

.btn:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

p {
  margin-bottom: 30px;
  line-height:24px;
}
p:last-child {
  margin-bottom: 0;
}

:active,
:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none !important;
}

::-moz-selection {
  background: #91b2c3;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #91b2c3;
  color: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #91b2c3;
  /* Firefox */
  color: #fff;
  text-shadow: none;
}

::-webkit-selection {
  background: #91b2c3;
  /* Safari */
  color: #fff;
  text-shadow: none;
}

img {
  height: auto;
  max-width: 100%;
}

iframe {
  border: none !important;
}

textarea:focus, textarea:active, input:focus, input:active {
  outline: none;
}

ul {
  margin: 0;
  padding: 0;
}
ul li {
  list-style: none;
}

pre,
ul,
ol,
dl,
dd,
blockquote,
address,
table,
fieldset {
  margin-bottom: 30px;
}

table p {
  margin-bottom: 0;
}

/*
-----------------------------------------------------------------------
  Common CSS
-----------------------------------------------------------------------
*/
/*-------- Background Style Css --------*/
.bg-img {
  background: no-repeat center center;
  background-size: cover;
}

/*-------- Container Style Css --------*/
.wrapper {
  /*overflow-x: hidden;*/
}

.container {
  padding-left: 15px;
  padding-right: 15px;
}
@media only screen and (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
}

.row > * {
  margin-top: 0;
}

.row {
  margin-right: -15px;
  margin-left: -15px;
}
.row > [class*=col-] {
  padding-right: 15px;
  padding-left: 15px;
}

/*-------- Gutter Style Css --------*/
.no-gutter {
  margin-right: 0;
  margin-left: 0;
}
.no-gutter .col,
.no-gutter [class*=col-] {
  padding-left: 0;
  padding-right: 0;
}

.row-gutter-10 {
  margin-right: -5px;
  margin-left: -5px;
}
.row-gutter-10 .col,
.row-gutter-10 [class*=col-] {
  padding-left: 5px;
  padding-right: 5px;
}

.row-gutter-20 {
  margin-right: -10px;
  margin-left: -10px;
}
.row-gutter-20 .col,
.row-gutter-20 [class*=col-] {
  padding-left: 10px;
  padding-right: 10px;
}

.row-gutter-40 {
  margin-right: -20px;
  margin-left: -20px;
}
.row-gutter-40 .col,
.row-gutter-40 [class*=col-] {
  padding-left: 20px;
  padding-right: 20px;
}

.row-gutter-70 {
  margin-right: -35px;
  margin-left: -35px;
}
@media only screen and (max-width: 1199px) {
  .row-gutter-70 {
    margin-right: -15px;
    margin-left: -15px;
  }
}
.row-gutter-70 .col,
.row-gutter-70 [class*=col-] {
  padding-left: 35px;
  padding-right: 35px;
}
@media only screen and (max-width: 1199px) {
  .row-gutter-70 .col,
.row-gutter-70 [class*=col-] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/*-------- Spacing Style Css --------*/
.container,
.container-fluid {
  padding-bottom: 90px;
  padding-top: 113px;
}
@media only screen and (max-width: 1199px) {
  .container,
.container-fluid {
    padding-bottom: 50px;
    padding-top: 80px;
  }
}

/*-------- Button Style Css --------*/
.btn-theme {
  background-color: #feed00;
  border: 1px solid #febf00;
  border-radius: 50px;
  color: #010E34;
  display: inline-block;
  font-size: 16px;
      font-weight: 600;
  padding: 8px 35px 8px;
  text-align: center;
  line-height: 16px;
  /*height: 38px;*/
}
.btn-theme.btn-sm {
  height: 38px;
  padding: 4px 5px 6px;
  width: 110px;
  line-height: 26px;
}
@media only screen and (max-width: 1199px) {
  .btn-theme.btn-sm {
    height: 34px;
    padding: 4px 4px 4px;
    width: 90px;
    font-size: 16px;
  }
}
.btn-theme.btn-white {
  background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.btn-theme.btn-black {
  background-color: transparent;
    border: 2px solid #010e34;
    color: #010e34;
}

.btn-theme.btn-grey {
  background-color: transparent;
    border: 2px solid #E5E5E5;
    color: #6B6B6B;
}

.btn-theme.btn-grey:hover {
  background-color: #f4f7f7;
  border: 2px solid #f4f7f7;
  color: #6B6B6B;
 }

.btn-theme.btn-grey .icofont-share {
  color:#0193DE;
}

.btn-theme.btn-grey .icofont-heart {
  color:#F44336
}

.b-rrss a{
    border: 1px solid transparent;
    border-radius: 5px;
    color: #fff;
    height: 45px;
    font-size: 22px;
    width: 45px;
    text-align: center;
    line-height: 43px;
	display:inline-block;
}

.b-rrss a.fb{
	background:#2A50C0;
}

.b-rrss a.fb:hover{
	background:#1e3c94;
}

.b-rrss a.ig{
	background:#B01D76;
}

.b-rrss a.ig:hover{
	background:#9c1466;
}

.b-rrss a.lk{
	background:#2B489C;
}

.b-rrss a.lk:hover{
	background:#1b3379;
}

.b-rrss a.ws{
	background:#14A077;
}

.b-rrss a.ws:hover{
	background:#097857;
}

.b-rrss a.doc{
	background:#febf00;
}

.b-rrss a.doc:hover{
	background:#dba400;
}

.b-rrss a.yt{
	background:#c4302b;
}

.b-rrss a.yt:hover{
	background:#b22222;
}


.btn-theme.btn-white:hover {
  background-color: #febf00;
  border-color: #febf00;
  color: #fff;
}
.btn-theme:hover {
  background-color: #febf00;
  border: 1px solid #febf00;
  color: #fff;
}

/*-------- Z Index Style Css --------*/
.z-index--1 {
  z-index: -1;
}

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

.z-index-2 {
  z-index: 2;
}

/*-------- Fancybox Images Style Css --------*/
.fancybox-slide {
  cursor: url("../img/icons/cancel-white.png"), auto;
}

/*-------- Custom Color Style Css --------*/
.bg-color-gray {
  background-color: #f4f7f7;
}

/*-------- Margin & Padding Custom Style Css --------*/
.m--0 {
  margin: 0 !important;
}

.mb--0 {
  margin-bottom: 0 !important;
}

.ml--0 {
  margin-left: 0 !important;
}

.mr--0 {
  margin-right: 0 !important;
}

.mt--0 {
  margin-top: 0 !important;
}

.p--0 {
  padding: 0 !important;
}

.pb--0 {
  padding-bottom: 0 !important;
}

.pl--0 {
  padding-left: 0 !important;
}

.pr--0 {
  padding-right: 0 !important;
}

.pt--0 {
  padding-top: 0 !important;
}

.pt--20 {
  padding-top: 20px !important;
}

.pb--20 {
  padding-bottom: 20px !important;
}



/*-------- Scroll To Top Style Css --------*/
.scroll-to-top {
  -webkit-box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 8px 1px rgba(0, 0, 0, 0.2);
  bottom: -60px;
  background-color: #feed00;
  color: #fff;
  position: fixed;
  right: 30px;
  display: block;
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  font-size: 20px;
  line-height: 40px;
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 999;
}
@media only screen and (max-width: 767px) {

  .social-media-row, .horario .row {
    margin-right: 52px;
  }

  .horario .row {
    position: relative;
  }

  .horario span.delete-btn{
    position: absolute !important;
    margin-top: 24px !important;
    right: -40px !important;
    bottom: 0px !important;
  }


  .scroll-to-top {
    right: 10px;
    width: 30px;
    height: 30px;
    font-size: 12px;
    line-height: 30px;
  }
  
  .b-galeria{
	grid-template-columns: 1fr 1fr !important;
}
  
}
.scroll-to-top:hover {
  background-color: #010E34;
}
.scroll-to-top.show {
  visibility: visible;
  opacity: 0.8;
  bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .scroll-to-top.show {
    bottom: 10px;
  }
}
.scroll-to-top.show:hover {
  opacity: 1;
}

/*
-----------------------------------------------------------------------
	Main Navigation CSS
-----------------------------------------------------------------------
*/
.main-menu > li {
  margin-right: 14px;
  padding: 3px 0;
}
.main-menu > li:last-child {
  margin-right: 0;
}
.main-menu > li > a {
  color: #000;
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 30px;
  text-transform: uppercase;
  padding: 7px 25px;
  position: relative;
}
.main-menu > li:hover > a, .main-menu > li.active > a {
  color: #feed00;
}
.main-menu > li:hover > a:before, .main-menu > li.active > a:before {
  color: #feed00;
}

.has-submenu {
  padding-right: 10px;
  position: relative;
}
.has-submenu > a {
  position: relative;
}
.has-submenu > a:before {
  content: "";
  color: #010E34;
  display: none;
  font-size: 12px;
  font-family: "FontAwesome";
  display: none;
  position: absolute;
  right: -16px;
  top: 0;
  line-height: 51px;
}
.has-submenu:hover > .submenu-nav {
  margin-top: 0;
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}
.has-submenu .submenu-nav {
  background-color: #111;
  border: none;
  border-bottom: none;
  padding: 15px 0 15px;
  position: absolute;
  left: -15px;
  top: 100%;
  opacity: 0;
  min-width: 210px;
  pointer-events: none;
  margin-top: 30px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  visibility: hidden;
  z-index: 9999;
}
@media only screen and (max-width: 1199px) {
  .has-submenu .submenu-nav {
    min-width: 210px;
    left: 0;
  }
}
.has-submenu .submenu-nav:before {
  content: "";
  position: absolute;
  height: 56px;
  width: 100%;
  left: 0;
  bottom: 100%;
}
.has-submenu .submenu-nav > li {
  padding: 10px 25px;
}
.has-submenu .submenu-nav > li a {
  color: #aaa;
  display: block;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: inherit;
  
}
.has-submenu .submenu-nav > li a:hover {
  color: #fff;
}
.has-submenu .submenu-nav > li:hover > a {
  color: #fff;
}
.has-submenu .submenu-nav > li:hover:after {
  color: #fff !important;
}
.has-submenu .submenu-nav > li.has-submenu {
  position: relative;
}
.has-submenu .submenu-nav > li.has-submenu a:before {
  display: none;
}
.has-submenu .submenu-nav > li.has-submenu:hover > .submenu-nav {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}
.has-submenu .submenu-nav > li.has-submenu:after {
  content: "";
  color: #9E9E9E;
  font-size: 15px;
  line-height: 1;
  font-family: "FontAwesome";
  display: none;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0%, -57%);
  -webkit-transform: translate(0%, -57%);
  -moz-transform: translate(0%, -57%);
  -ms-transform: translate(0%, -57%);
  -o-transform: translate(0%, -57%);
}
.has-submenu .submenu-nav > li.has-submenu .submenu-nav {
  left: 100%;
  top: 0;
}

/*
-----------------------------------------------------------------------
  Offcanvas Header
-----------------------------------------------------------------------
*/
.off-canvas-wrapper.offcanvas {
  background-color: #fff;
  width: 310px;
}

@media only screen and (max-width: 576px) {
  .small-box img {
    height: 80px !important;
    width: 80px !important;
  }

}

@media only screen and (max-width: 991px) {
  .off-canvas-wrapper.offcanvas {
    width: 310px;
  }
}
.off-canvas-wrapper .offcanvas-header {
  padding: 0;
}
.off-canvas-wrapper .offcanvas-body {
  padding: 0 0 20px;
  scrollbar-width: auto;
  scrollbar-color: #1f1f1f #292929;
  /* Chrome, Edge, and Safari */
}
.off-canvas-wrapper .offcanvas-body::-webkit-scrollbar {
  width: 2px;
}
.off-canvas-wrapper .offcanvas-body::-webkit-scrollbar-track {
  background: #292929;
}
.off-canvas-wrapper .offcanvas-body::-webkit-scrollbar-thumb {
  background-color: #1f1f1f;
  border-radius: 2px;
  border: 2px solid #1f1f1f;
}
.off-canvas-wrapper .btn-menu-close {
  display: block;
  width: 100%;
  height: 60px;
  background-color: #feed00;
  opacity: 1;
  border-radius: 0;
  color: #000;
  background-image: none;
  padding: 0 20px;
  line-height: 60px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  font-weight: 600;
  text-align: left;
  border: none;
  position: relative;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.off-canvas-wrapper .btn-menu-close i {
  position: absolute;
  right: 21px;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
.off-canvas-wrapper .btn-menu-close:hover {
  color: #000;
  background-color: #FEAD00;
}

.offcanvas-backdrop,
.modal-backdrop {
  background-color: rgba(43, 43, 43, 0.92);
  cursor: url("../img/icons/cancel-white.png"), auto;
}
.offcanvas-backdrop.show,
.modal-backdrop.show {
  opacity: 1;
}

.mobile-menu-items {
  padding: 0;
}
.mobile-menu-items ul {
  border-top: 1px solid rgba(10, 77, 60, 0.15);
}
.mobile-menu-items ul li {
  position: relative;
}
.mobile-menu-items ul li a {
  display: block;
  width: 100%;
  background: none;
  text-align: left;
  padding: 10px 20px;
  border: 0;
  border-bottom: 1px solid rgba(10, 77, 60, 0.15);
  font-size: 15px;
  font-weight: 600;
  font-family: "Jost", sans-serif;
  color: #010E34;
}
.mobile-menu-items ul li a:hover {
  color: #FEAD00;
}
.mobile-menu-items ul li .mobile-menu-expand {
  position: absolute;
  right: 20px;
  top: 15px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.mobile-menu-items ul li .mobile-menu-expand::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #010E34;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.mobile-menu-items ul li .mobile-menu-expand::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #010E34;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.mobile-menu-items ul li.active-expand > .mobile-menu-expand::before {
  background-color: #FEAD00;
}
.mobile-menu-items ul li.active-expand > .mobile-menu-expand::after {
  background-color: #FEAD00;
  height: 0;
}
.mobile-menu-items ul li.active-expand a {
  color: #FEAD00;
}
.mobile-menu-items ul li.active-expand ul li a {
  color: #010E34;
  background: #efefef;
}
.mobile-menu-items ul li ul {
  border-top: 0;
}
.mobile-menu-items ul li ul li a {
  padding-left: 12%;
}
.mobile-menu-items ul li ul li a:hover {
  color: #FEAD00;
}
.mobile-menu-items ul li ul li ul li a {
  padding-left: 18%;
}

/*
-----------------------------------------------------------------------
  Section Title CSS
-----------------------------------------------------------------------
*/
.section-title {
  margin-bottom: 56px;
}
@media only screen and (max-width: 1199px) {
  .section-title {
    margin-bottom: 42px;
  }
}
.section-title .title {
  font-size: 30px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1199px) {
  .section-title .title {
    font-size: 28px;
    margin-bottom: 8px;
  }
}
@media only screen and (max-width: 991px) {
  .section-title .title {
    font-size: 25px;
    margin-bottom: 6px;
  }
}
.section-title .desc p {
  padding-bottom: 0;
}

/*
-----------------------------------------------------------------------
  Header CSS
-----------------------------------------------------------------------
*/
.header-area {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
}
.header-area .container {
  padding: 0 15px;
}
.header-area.sticky-header {
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
}
.header-area.sticky-header.sticky {
  background-color: #feed00;
  -webkit-box-shadow: 0px 10px 60px -30px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 10px 60px -30px rgba(0, 0, 0, 0.1);
  position: fixed !important;
  left: 0;
  top: 0 !important;
  width: 100%;
  z-index: 99;
}
.header-area.sticky-header.sticky .header-logo-area .logo-main {
  display: block;
}
.header-area.sticky-header.sticky .header-logo-area .logo-light {
  display: none;
}
.header-area.transparent {
  background-color: transparent;
  position: absolute !important;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9;
}
.header-area.header-default {
  background-size: cover;
  background-position: top left 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
}
.header-area .header-align {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .header-navigation-area {
    display: none;
  }
}
.header-navigation-area .main-menu.nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-navigation-area .main-menu.nav > li {
  padding: 0;
  margin-right: 0;
}
.header-navigation-area .main-menu.nav > li.active > a {
  color: #feed00;
}
.header-navigation-area .main-menu.nav > li.active > a:before {
  color: #feed00;
}
.header-navigation-area .main-menu.nav > li > a {
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  height: 88px;
  line-height: 90px;
  letter-spacing: 0;
  position: relative;
  margin: 0 11px;
  padding: 0 11px;
  
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1199px) {
  .header-navigation-area .main-menu.nav > li > a {
    height: 78px;
    line-height: 80px;
    margin: 0 7px;
    margin-left: 7px;
    padding: 0 7px;
    padding-left: 7px;
  }
}
.header-navigation-area .main-menu.nav > li > a span {
  position: relative;
}
.header-navigation-area .main-menu.nav > li > a span:before {
  content: "";
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.header-navigation-area .main-menu.nav > li > a:hover {
  color: #feed00;
}
.header-navigation-area .main-menu.nav > li > a:hover:after {
  bottom: auto;
  height: 100%;
  top: 0;
}
.header-navigation-area .main-menu.nav > li:first-child {
  margin-left: 0;
}
.header-navigation-area .main-menu.nav > li:first-child > a {
  margin-left: 0;
  padding-left: 0;
}
.header-navigation-area .main-menu.nav > li:last-child {
  margin-right: 0;
}
.header-navigation-area .main-menu.nav > li:last-child > a {
  margin-right: 0;
  padding-right: 0;
}
.header-navigation-area .main-menu.nav > li:hover span:before {
  background-color: #fff;
  width: 100%;
  left: 0;
  right: auto;
}
.header-navigation-area .main-menu.nav .has-submenu:hover a {
  color: #feed00;
}
.header-navigation-area .main-menu.nav .has-submenu:hover a:before {
  color: #feed00;
}
.header-navigation-area .main-menu.nav .has-submenu:hover a:after {
  bottom: auto;
  height: 100%;
  top: 0;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav {
  -webkit-box-shadow: 0 1px 24px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 1px 24px 0 rgba(0, 0, 0, 0.09);
  background-color: #fff;
  border-radius: 0 0 4px 4px;
  color: #555;
  padding: 0 0;
  position: absolute;
  width: 210px;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav:before {
  display: none;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li {
  border-bottom: 1px solid rgba(173, 181, 189, 0.15);
  padding: 0;
  margin-bottom: 0;
  position: relative;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.active a {
  color: #feed00 !important;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.active:after {
  color: #feed00;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li a {
  color: #1d1d1d;
  display: block;
  font-size: 14px;
  padding: 11px 25px 10px;
  position: relative;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li a:hover {
  color: #feed00;
  background-color: rgba(173, 181, 189, 0.15);
}
@media only screen and (max-width: 1399.98px) {
  .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu {
    padding: 0px 28px;
  }
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu:after {
  color: #555;
}
@media only screen and (max-width: 1399.98px) {
  .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu:after {
    right: auto;
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    top: calc(50% + -8px);
    left: 20px;
  }
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu.active:after {
  color: #feed00;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu .submenu-nav {
  border-radius: 0 4px 4px 4px;
  -webkit-box-shadow: 0 0 3.76px 0.24px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 3.76px 0.24px rgba(0, 0, 0, 0.05);
  left: 100%;
  right: auto;
  top: 7px;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}
@media only screen and (max-width: 1399.98px) {
  .header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu .submenu-nav {
    left: auto;
    right: 100%;
  }
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu .submenu-nav:before {
  content: "";
  display: block;
  height: 30px;
  position: absolute;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu .submenu-nav > li > a {
  color: #555 !important;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu .submenu-nav > li > a:hover {
  color: #feed00 !important;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu .submenu-nav > li.active > a {
  color: #feed00 !important;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu:hover a {
  color: #feed00;
}
.header-navigation-area .main-menu.nav .has-submenu .submenu-nav > li.has-submenu:hover:after {
  color: #feed00 !important;
}

.btn-menu {
  color: #feed00;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 5px;
  display: none;
  margin: 0;
  padding: 0;
  font-size: 20px;
  margin-left: 8px;
  position: relative;
  top: 1px;
  height: 38px;
  width: 38px;
  line-height: 38px;
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
}
@media only screen and (max-width: 991px) {
  .btn-menu {
    display: inline-block;
  }
}
@media only screen and (max-width: 767px) {
  .btn-menu {
    height: 34px;
    width: 34px;
    font-size: 16px;
    line-height: 34px;
  }
}
.btn-menu:hover {
  border:1px solid #feed00;
}

.header-logo-area {
  margin-top: 1px;
  position: relative;
}
.header-logo-area a {
  display: block;
}
.header-logo-area img {
  max-width: 125px;
}
@media only screen and (max-width: 1399.98px) {
  .header-logo-area img {
    max-width: 125px;
  }
}
@media only screen and (max-width: 1199px) {
  .header-logo-area img {
    max-width: 112px;
  }
}
.header-logo-area .logo-light {
  display: none;
}

@media only screen and (max-width: 991px) {
  .header-action-area {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 70px;
  }
}
.header-action-area .btn-registration {
  background-color: #feed00;
  border-radius: 50px;
  color: #000;
  display: inline-block;
  font-size: 15px;
  height: 48px;
  width: 160px;
  font-weight:600;
  text-align: center;
  line-height: 47px;
}

.header-action-area{
  display: inline-flex;
  align-items: center;
}

@media only screen and (max-width: 1199px) {
  .header-action-area .btn-registration {
    font-size: 14px;
    height: 38px;
    width: 122px;
    line-height: 36px;
  }
}
@media only screen and (max-width: 767px) {
  .header-action-area .btn-registration {
    font-size: 13px;
    height: 34px;
    width: 102px;
    line-height: 32px;
  }
}
.header-action-area .btn-registration span {
  margin-right: 4px;
}
@media only screen and (max-width: 767px) {
  .header-action-area .btn-registration span {
    margin-right: 0;
    position: relative;
    top: -1px;
  }
}
.header-action-area .btn-registration:hover {
  background-color: #fead00;
}

/*
-----------------------------------------------------------------------
    Home Slider CSS
-----------------------------------------------------------------------
*/
.home-slider-area {
  position: relative;
}

.home-slider-container .slider-content-area {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 640px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .home-slider-container .slider-content-area {
    height: 700px;
  }
}
@media only screen and (max-width: 991px) {
  .home-slider-container .slider-content-area {
    height: 600px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider-container .slider-content-area {
    height: 520px;
  }
}
@media only screen and (max-width: 575px) {
  .home-slider-container .slider-content-area {
    height: auto;
    padding: 104px 0 98px;
  }
  
  .info-list{
	    position: fixed;
    bottom: 0px;
    background: #010e34;
    width: 100%;
    left: 0px;
    margin-bottom: 0px !important;
    padding: 20px 10px;
    z-index: 10;
    
}

.contact-convenio{
  flex-direction: column;
  gap: 12px;
  align-items: start !important;
}

.contact-convenio .info-list, .contact-convenio.cta-cap .info-list{
  position: initial;

  background: none;
  width: 100%; 

  margin-bottom: 0px !important; 
  padding: 0px !important; 
   z-index: 10;
   justify-content: start;
}


  
}
.home-slider-container .slider-content-area:before {
  background-color: #010E34;
  content: "";
  height: 100%;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.home-slider-container .slider-content-area .slider-content {
  margin-bottom: 34px;
  margin-top: 23px;
  position: relative;
  text-align: center;
  z-index: 1;
}
.home-slider-container .slider-content-area .slider-content .title {
  color: #fefefe;
  font-size: 50px;
  line-height: 1.3;
  margin-bottom: 21px;
}
@media only screen and (max-width: 1199px) {
  .home-slider-container .slider-content-area .slider-content .title {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider-container .slider-content-area .slider-content .title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 575px) {
  .home-slider-container .slider-content-area .slider-content .title {
    font-size: 26px;
  }
}
.home-slider-container .slider-content-area .slider-content .title span {
  color: #feed00;
}
.home-slider-container .slider-content-area .slider-content .desc {
  color: #fefefe;
  font-size: 18px;
  margin-bottom: 0;
}
@media only screen and (max-width: 1199px) {
  .home-slider-container .slider-content-area .slider-content .desc {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider-container .slider-content-area .slider-content .desc {
    font-size: 14px;
  }
}

@media only screen and (max-width: 1199px) {
  .home-slider-shape {
    display: none;
  }
}
.home-slider-shape .shape1 {
  position: absolute;
  top: 0;
  right: 0;
  animation: movebounce 4s linear infinite;
  -webkit-animation: movebounce 4s linear infinite;
  -moz-animation: movebounce 4s linear infinite;
  -ms-animation: movebounce 4s linear infinite;
  -o-animation: movebounce 4s linear infinite;
}
@media only screen and (max-width: 1699px) {
  .home-slider-shape .shape1 {
    width: 200px;
  }
}
@media only screen and (max-width: 1399.98px) {
  .home-slider-shape .shape1 {
    width: 170px;
  }
}
.home-slider-shape .shape2 {
  position: absolute;
  top: 0;
  right: 0;
  animation: movebounce2 5s linear infinite;
  -webkit-animation: movebounce2 5s linear infinite;
  -moz-animation: movebounce2 5s linear infinite;
  -ms-animation: movebounce2 5s linear infinite;
  -o-animation: movebounce2 5s linear infinite;
}
@media only screen and (max-width: 1699px) {
  .home-slider-shape .shape2 {
    width: 170px;
  }
}
@media only screen and (max-width: 1399.98px) {
  .home-slider-shape .shape2 {
    width: 130px;
  }
}
.home-slider-shape .shape3 {
  position: absolute;
  bottom: 140px;
  left: 0;
  animation: movebounce3 4s linear infinite;
  -webkit-animation: movebounce3 4s linear infinite;
  -moz-animation: movebounce3 4s linear infinite;
  -ms-animation: movebounce3 4s linear infinite;
  -o-animation: movebounce3 4s linear infinite;
}
@media only screen and (max-width: 1699px) {
  .home-slider-shape .shape3 {
    width: 210px;
  }
}
@media only screen and (max-width: 1399.98px) {
  .home-slider-shape .shape3 {
    width: 160px;
  }
}
.home-slider-shape .shape4 {
  position: absolute;
  bottom: 82px;
  right: 48px;
}
@media only screen and (max-width: 1399.98px) {
  .home-slider-shape .shape4 {
    width: 100px;
  }
}

.job-search-wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  max-width: 998px;
}

@-webkit-keyframes movebounce {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes movebounce {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@-webkit-keyframes movebounce2 {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(60px);
    transform: translateX(60px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes movebounce2 {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateX(60px);
    transform: translateX(60px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@-webkit-keyframes movebounce3 {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
@keyframes movebounce3 {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
  50% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  100% {
    -webkit-transform: translateX(0px);
    transform: translateX(0px);
  }
}
/*
-----------------------------------------------------------------------
  Shop CSS
-----------------------------------------------------------------------
*/
.job-category-area .container {
  padding-top: 129px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1199px) {
  .job-category-area .container {
    padding-top: 78px;
    padding-bottom: 60px;
  }
}

.job-category-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ffffff;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 68px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 20px;
  position: relative;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1199px) {
  .job-category-item {
    height: 55px;
  }
}
.job-category-item .content {
  margin-top: -1px;
}
.job-category-item .title {
  color: #010E34;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}
@media only screen and (max-width: 1199px) {
  .job-category-item .title {
    font-size: 14px;
  }
}
.job-category-item .title a {
  color: #010E34;
}
.job-category-item .overlay-link {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.job-category-item:hover {
  background-color: #feed00;
}
.job-category-item:hover .title a {
  color: #000;
}

/*
-----------------------------------------------------------------------
  Services CSS
-----------------------------------------------------------------------
*/
.recent-job-inner-area .container {
  padding-top: 160px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 1199px) {
  .recent-job-inner-area .container {
    padding-top: 120px;
    padding-bottom: 40px;
  }
}
.recent-job-inner-area .pagination-area {
  margin-top: 40px;
}
@media only screen and (max-width: 1199px) {
  .recent-job-inner-area .pagination-area {
    margin-top: 10px;
  }
}

.job-details-area .container {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 1199px) {
  .job-details-area .container {
    /*padding-top: 80px;
    padding-bottom: 50px;*/
  }
}

.employers-details-area .container {
  padding-top: 120px;
  padding-bottom: 90px;
}
@media only screen and (max-width: 1199px) {
  .employers-details-area .container {
    padding-top: 80px;
    padding-bottom: 50px;
  }
}

.recent-job-item {
  background-color: #fff;
  border-radius: 5px;
  margin-bottom: 30px;
  padding: 28px;
  border:1px solid #e5e5e5;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1199px) {
  .recent-job-item {
    padding: 32px;
  }
}
.recent-job-item .company-info {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  justify-content:center;
  display: flex;
}

.recent-job-item .company-info a{
  display: block;
  width: 75px;
  height: 75px;
  overflow: hidden;
}
.recent-job-item .company-info img {
  border-radius: 5px;
  height: 75px;
  object-fit: cover;
}
@media only screen and (max-width: 1199px) {
  .recent-job-item .company-info img {
    min-width: auto;
    width: 58px;
  }
}
.recent-job-item .company-info .content {
  margin-left: 30px;
  margin-top: -1px;
}
@media only screen and (max-width: 1199px) {
  .recent-job-item .company-info .content {
    margin-left: 14px;
  }
}
.recent-job-item .company-info .name {
  color: #010E34;
  font-size: 20px;
  margin-bottom: 9px;
}
@media only screen and (max-width: 1199px) {
  .recent-job-item .company-info .name {
    font-size: 16px;
  }
}
.recent-job-item .company-info .name a {
  color: #010E34;
}
.recent-job-item .company-info .name a:hover {
  color: #feed00;
}
.recent-job-item .company-info .address {
  font-size: 15px;
  line-height: 1;
}
@media only screen and (max-width: 1199px) {
  .recent-job-item .company-info .address {
    font-size: 14px;
  }
}
.recent-job-item .main-content {
  margin: 12px 0 12px;
  text-align:center;
}

.recent-job-item .main-content .rating .icofont-star{
  cursor: auto;
} 

.recent-job-item .main-content .title {
  color: #010E34;
  font-size: 20px;
  margin-bottom: 4px;
}
@media only screen and (max-width: 1199px) {
  .recent-job-item .main-content .title {
    font-size: 18px;
  }
}
.recent-job-item .main-content .title a {
  color: #010E34;
  height: 52px;
  display: flex;
    align-items: center;
    justify-content: center;
    /*line-height: 5px;*/
}
.recent-job-item .main-content .title a:hover {
  color: #010E34;
}
.recent-job-item .main-content .work-type {
  color: #000;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
}
@media only screen and (max-width: 1199px) {
  .recent-job-item .main-content .work-type {
    font-size: 16px;
  }
}
.recent-job-item .main-content .desc {
  font-size: 14px;
  line-height: 20px;
  max-width: 234px;
  height: 52px;
  display: flex;
  justify-content: center;
  margin: 12px 0px;
}

.recent-job-item .main-content .desc i{
  font-size: 20px;
  
}

@media only screen and (max-width: 1199px) {
  .recent-job-item .main-content .desc {
    font-size: 13px;
    max-width: none;
  }
}
.recent-job-item .recent-job-info {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  justify-content:center;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          
}
.recent-job-item .recent-job-info .salary {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
}
.recent-job-item .recent-job-info .salary h4 {
  font-size: 22px;
  line-height: 1;
  margin-bottom: 0;
}
@media only screen and (max-width: 1199px) {
  .recent-job-item .recent-job-info .salary h4 {
    font-size: 19px;
  }
}
.recent-job-item .recent-job-info .salary p {
  bottom: 3px;
  font-size: 14px;
  line-height: 1;
  position: relative;
}
.recent-job-item:hover {
  -webkit-box-shadow: 0px 15px 15px 0px rgba(114, 118, 116, 0.08);
          box-shadow: 0px 15px 15px 0px rgba(114, 118, 116, 0.08);
		  border:1px solid #FEAD00;
}

.recent-job-style2-item {
  background-color: #f4f7f7;
}
.recent-job-style2-item:hover {
  -webkit-box-shadow: 0px 5px 15px 0px rgba(114, 118, 116, 0.15);
          box-shadow: 0px 5px 15px 0px rgba(114, 118, 116, 0.15);
}

.recent-job-style3-item {
  background-color: #f4f7f7;
  padding: 36px 35px 36px;
}
.recent-job-style3-item.recent-job-item .company-info .content {
  margin-bottom: 0;
}
.recent-job-style3-item.recent-job-item .company-info .name {
  font-size: 19px;
  margin-right: -2px;
}
.recent-job-style3-item.recent-job-item:hover {
  -webkit-box-shadow: 0px 5px 15px 0px rgba(114, 118, 116, 0.15);
          box-shadow: 0px 5px 15px 0px rgba(114, 118, 116, 0.15);
}

.job-details-wrap {
  background-color: #fff;
  border-radius: 5px;
  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-bottom: 50px;*/
  padding: 20px 20px 20px 20px;
  border-bottom:1px solid #E5E5E5;
}
@media only screen and (max-width: 991px) {
  .job-details-wrap {
    padding: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .job-details-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (max-width: 575px) {
  .job-details-wrap {
    display: block;
    text-align: center;
  }
}

.job-details-info {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.job-details-info .thumb{
	/*border:1px solid #C3C3C3;*/
	border-radius:8px;
	overflow:hidden;
}


@media only screen and (max-width: 575px) {
  .job-details-info {
    display: block;
  }
}
@media only screen and (max-width: 575px) {
  .job-details-info .thumb {
    margin-bottom: 12px;
  }
}
.job-details-info .thumb img {
  border-radius: 5px;
  border:1px solid #C3C3C3;
}
.job-details-info .content {
  margin-top: -3px;
  margin-left: 30px;
}
@media only screen and (max-width: 1199px) {
  .job-details-info .content {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .job-details-info .content {
    margin-left: 0;
    margin-top: 0;
  }
}
.job-details-info .content .title {
  font-size: 24px;
  margin-bottom: 9px;
}
@media only screen and (max-width: 991px) {
  .job-details-info .content .title {
    font-size: 22px;
    margin-bottom: 8px;
  }
}
.job-details-info .content .sub-title {
  color: #202020;
  font-size: 16px;
  font-weight: 500;
  
}
 .info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}

 .info-list li a{
	padding:12px 16px;
	display:inline-block;
	font-size:16px;
	font-weight:600;
	line-height:20px;
}

 .info-list li a.num-ws{
	background:#14A077;
	color:#fff;
	border:1px solid #14A077;
}

 .info-list li a.num-ws:hover{
	background:#097857;
}



.info-list li a.num-phone{
	background:#fff;
	color:#010E34;
	border:1px solid #010E34;
}

 .info-list li a.num-phone:hover{
	background:#010E34;
	color:#ffffff;
}


@media only screen and (max-width: 575px) {
  .info-list {
      flex-direction: row !important;
      justify-content: center;
	  margin-bottom:8px;
  }
}
 .info-list li {
  color: #9E9E9E;
  font-size: 14px;
  line-height: 1;
}
 .info-list li + li {
  margin-left: 19px;
}
@media only screen and (max-width: 575px) {
 .info-list li + li {
    /*margin-top: 14px;*/
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .job-details-share {
    margin-top: 26px;
  }
}
@media only screen and (max-width: 575px) {
  .job-details-share {
    margin-top: 0px;
	flex-direction: row !important;
	justify-content:center;
  }
  
  .b-star{
	  justify-content:center;
  }
  
  
}
.job-details-share .title {
  font-size: 24px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1199px) {
  .job-details-share .title {
    font-size: 24px;
    margin-bottom: 6px;
  }
}
@media only screen and (max-width: 991px) {
  .job-details-share .title {
    font-size: 22px;
    margin-bottom: 6px;
  }
}
@media only screen and (max-width: 575px) {
  .job-details-share .title {
    font-size: 22px;
    margin-bottom: 14px;
  }
}
.job-details-share .title span {
  color: #9E9E9E;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  position: relative;
  display: inline-block;
  left: -8px;
}
.job-details-share .btn-theme {
  width: 130px;
  /*height: 45px;*/
  padding: 8px 5px 10px;
}
@media only screen and (max-width: 991px) {
  .job-details-share .btn-theme {
    width: 120px;
    height: 41px;
    padding: 5px;
  }
}

.job-details-item {
  
}
.job-details-item .content {
  margin-bottom: 24px;
  
}
@media only screen and (max-width: 1199px) {
  .job-details-item .content {
    margin-bottom: 12px;
    margin-right: 0;
  }
}
.job-details-item .content .title, .convenio-info .title {
  font-size: 24px;
  margin-bottom: 4px;
}

.job-details-item .content .title a{
	font-size:18px;
	font-weight:400;
	color:#010E34;
	display:inline-block;
	margin-left:8px;
}

.job-details-item .content .title a:hover, .job-details-item .content .title a i{
	color:#febf00;
}

.job-details-item .content .title a i{
	color:#010E34;
}

.job-details-item .content .title i, .convenio-info .title i{
	color:#0193DE;
}

@media only screen and (max-width: 1199px) {
  .job-details-item .content .title {
    font-size: 26px;
    /*margin-bottom: 18px;*/
  }
}
.job-details-item .content .desc {
  margin-bottom: 19px;
  margin-right: -4px;
}
.job-details-item .job-details-list li {
  font-size: 16px;
  display: block;
  line-height: 1.75;
  position: relative;
  padding-left: 30px;
  line-height: 20px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1199px) {
  .job-details-item .job-details-list li {
    font-size: 15px;
  }
}
.job-details-item .job-details-list li i {
  margin-right: 12px;
  margin-right: 12px;
  position: absolute;
  left: 0px;
  top: 1px;
  color: #FEAD00;
}
.job-details-item .btn-apply-now {
  background-color: #feed00;
  color: #fff;
  display: inline-block;
  font-size: 17px;
  font-weight: 500;
 
  padding: 10px 10px;
  border-radius: 5px;
  width: 200px;
  height: 60px;
  text-align: center;
  line-height: 39px;
  position: relative;
  margin-top: 46px;
}
@media only screen and (max-width: 1199px) {
  .job-details-item .btn-apply-now {
    margin-top: 16px;
    font-size: 15px;
    padding: 5px;
    width: 150px;
    height: 50px;
    line-height: 40px;
  }
}
.job-details-item .btn-apply-now i {
  color: #fff;
  font-size: 20px;
  position: relative;
  top: 2px;
  margin-left: 16px;
}
@media only screen and (max-width: 1199px) {
  .job-details-item .btn-apply-now i {
    font-size: 17px;
    margin-left: 0;
  }
}
.job-details-item .btn-apply-now:hover {
  background-color: #010E34;
  color: #fff;
}

/*
-----------------------------------------------------------------------
  Working Process CSS
-----------------------------------------------------------------------
*/
@media only screen and (max-width: 1199px) {
  .work-process-area .container {
    padding-bottom: 44px;
  }
}

.working-process-item {
  max-width: 216px;
  margin-bottom: 22px;
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .working-process-item {
    margin: 0 auto 34px;
  }
}
.working-process-item .icon-box {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.working-process-item .icon-box .inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f4f7f7;
  border-radius: 5px;
  color: #feed00;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 70px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 15px;
  position: relative;
  text-align: center;
  width: 70px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1199px) {
  .working-process-item .icon-box .inner {
    height: 60px;
    margin: 10px;
    width: 60px;
  }
}
.working-process-item .icon-box .inner:before {
  border: 2px dashed #e8efef;
  border-radius: 5px;
  content: "";
  height: calc(100% + 30px);
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% + 30px);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1199px) {
  .working-process-item .icon-box .inner:before {
    height: calc(100% + 20px);
    width: calc(100% + 20px);
  }
}
.working-process-item .icon-box .inner img {
  position: absolute;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1199px) {
  .working-process-item .icon-box .inner img {
    width: 18px;
  }
}
.working-process-item .icon-box .inner .icon-hover {
  opacity: 0;
}
.working-process-item .content {
  margin-top: 34px;
}
@media only screen and (max-width: 1199px) {
  .working-process-item .content {
    margin-top: 24px;
  }
}
.working-process-item .title {
  font-size: 22px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 1199px) {
  .working-process-item .title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
.working-process-item .desc {
  margin-bottom: 0;
}
.working-process-item .shape-arrow-icon {
  position: absolute;
  width: 33px;
  top: 40px;
  right: -52px;
}
@media only screen and (max-width: 1199px) {
  .working-process-item .shape-arrow-icon {
    position: absolute;
    width: 33px;
    top: 30px;
    right: -6px;
  }
}
@media only screen and (max-width: 991px) {
  .working-process-item .shape-arrow-icon {
    display: none;
  }
}
.working-process-item .shape-arrow-icon .shape-icon,
.working-process-item .shape-arrow-icon .shape-icon-hover {
  position: absolute;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.working-process-item .shape-arrow-icon .shape-icon-hover {
  opacity: 0;
}
.working-process-item:hover .icon-box .inner {
  background-color: #feed00;
}
.working-process-item:hover .icon-box .inner:before {
  border-color: #feed00;
}
.working-process-item:hover .icon-box .inner .icon-hover {
  opacity: 1;
}
.working-process-item:hover .shape-icon {
  opacity: 0;
}
.working-process-item:hover .shape-icon-hover {
  opacity: 1;
}

.working-process-content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 991px) {
  .working-process-content-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (max-width: 991px) {
  .working-process-content-wrap .working-col {
    width: 50%;
  }
}
@media only screen and (max-width: 479.98px) {
  .working-process-content-wrap .working-col {
    width: 100%;
  }
}

/*
-----------------------------------------------------------------------
  Divider CSS
-----------------------------------------------------------------------
*/
.divider-style1 {
  padding: 97px 0 102px;
}
@media only screen and (max-width: 1199px) {
  .divider-style1 {
    padding: 80px 0 85px;
  }
}
.divider-style1 .divider-content .sub-title {
  color: #fff;
  font-size: 23px;
  margin-bottom: 23px;
}
@media only screen and (max-width: 1199px) {
  .divider-style1 .divider-content .sub-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .divider-style1 .divider-content .sub-title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 575px) {
  .divider-style1 .divider-content .sub-title {
    font-size: 15px;
  }
}
.divider-style1 .divider-content .title {
  color: #fff;
  font-size: 40px;
  line-height: 1.5;
  margin-bottom: 35px;
}
@media only screen and (max-width: 1199px) {
  .divider-style1 .divider-content .title {
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .divider-style1 .divider-content .title {
    font-size: 28px;
  }
}
@media only screen and (max-width: 575px) {
  .divider-style1 .divider-content .title {
    font-size: 25px;
  }
}
@media only screen and (max-width: 479.98px) {
  .divider-style1 .divider-content .title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 479.98px) {
  .divider-style1 .divider-content .title br {
    display: none;
  }
}
.divider-style1 .divider-content .btn-divider img {
  border-radius: 8px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1199px) {
  .divider-style1 .divider-content .btn-divider img {
    width: 150px;
  }
}
@media only screen and (max-width: 575px) {
  .divider-style1 .divider-content .btn-divider img {
    width: 130px;
  }
}
.divider-style1 .divider-content .btn-divider-app-store {
  margin-left: 19px;
}
@media only screen and (max-width: 1199px) {
  .divider-style1 .divider-content .btn-divider-app-store {
    margin-left: 12px;
  }
}
.divider-style1 .divider-content .btn-divider:hover img {
  opacity: 0.8;
}
.divider-style1 .divider-btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.account-login-area .container {
  padding-top: 160px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 1199px) {
  .account-login-area .container {
    padding-bottom: 80px;
    padding-top: 80px;
  }
}

.login-register-form-wrap {
  background-color: #f4f7f7;
  border-radius: 8px;
  padding: 40px;
}
@media only screen and (max-width: 1199px) {
  .login-register-form-wrap {
    padding: 38px 50px 35px;
  }
}
@media only screen and (max-width: 767px) {
  .login-register-form-wrap {
    padding: 35px 40px 32px;
  }
}
@media only screen and (max-width: 575px) {
  .login-register-form-wrap {
    padding: 32px 34px 29px;
  }
}
@media only screen and (max-width: 479.98px) {
  .login-register-form-wrap {
    padding: 28px 24px 25px;
  }
}
.login-register-form-wrap .form-title .title {
  border-bottom: 1px solid #d7e1dc;
  font-size: 28px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  position: relative;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  .login-register-form-wrap .form-title .title {
    font-size: 24px;
    margin-bottom: 28px;
    padding-bottom: 20px;
  }
}
.login-register-form-wrap .form-title .title:before {
  background-color: #FEAD00;
  content: "";
  height: 3px;
  width: 50px;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  bottom: -2px;
}

.sec-overlay {
  position: relative;
  z-index: 1;
}
.sec-overlay-theme:before {
  background-color: #FEAD00;
  content: "";
  left: 0;
  height: 100%;
  opacity: 0.95;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.sec-overlay-black:before {
  background-color: #010E34;
  content: "";
  left: 0;
  height: 100%;
  opacity: 0.7;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.play-video-btn .video-popup {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #feed00;
  height: 76px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: -41px auto 0;
  position: relative;
  padding-left: 2px;
  text-align: center;
  width: 76px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .play-video-btn .video-popup {
    width: 56px;
    height: 56px;
    margin: -30px auto 0;
  }
}
.play-video-btn .video-popup:before {
  background-color: #feed00;
  border-radius: 50%;
  content: "";
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  position: absolute;
}
.play-video-btn .video-popup:after {
  border: 1px solid #cacaca;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0.25;
  z-index: -2;
  animation: popup-overlay 1.4s linear infinite;
  -webkit-animation: popup-overlay 1.4s linear infinite;
  -moz-animation: popup-overlay 1.4s linear infinite;
  -ms-animation: popup-overlay 1.4s linear infinite;
  -o-animation: popup-overlay 1.4s linear infinite;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}

.bg-layer-style1 {
  background-color: #010E34;
  content: "";
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
  height: 100%;
  position: absolute;
  width: 625px;
  top: 0;
  left: 0;
  opacity: 0.05;
  z-index: -1;
}
@media only screen and (max-width: 1199px) {
  .bg-layer-style1 {
    width: 357px;
  }
}
@media only screen and (max-width: 991px) {
  .bg-layer-style1 {
    width: 210px;
  }
}
@media only screen and (max-width: 767px) {
  .bg-layer-style1 {
    width: 80px;
  }
}
@media only screen and (max-width: 575px) {
  .bg-layer-style1 {
    display: none;
  }
}

.bg-layer-style2 {
  background-color: #010E34;
  content: "";
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
  height: 100%;
  position: absolute;
  width: 625px;
  top: 0;
  right: 0;
  opacity: 0.05;
  z-index: -1;
}
@media only screen and (max-width: 1199px) {
  .bg-layer-style2 {
    width: 357px;
  }
}
@media only screen and (max-width: 991px) {
  .bg-layer-style2 {
    width: 210px;
  }
}
@media only screen and (max-width: 767px) {
  .bg-layer-style2 {
    width: 80px;
  }
}
@media only screen and (max-width: 575px) {
  .bg-layer-style2 {
    display: none;
  }
}

@-webkit-keyframes popup-overlay {
  0% {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    -o-transform: scale(1.6);
    opacity: 0;
  }
}

@keyframes popup-overlay {
  0% {
    transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    -webkit-transform: scale(1.6);
    -moz-transform: scale(1.6);
    -ms-transform: scale(1.6);
    -o-transform: scale(1.6);
    opacity: 0;
  }
}
/*
-----------------------------------------------------------------------
  Brand Logo CSS
-----------------------------------------------------------------------
*/
.brand-logo-content {
  border-top: 1px solid #f2f5f5;
  padding-top: 100px;
  padding-bottom: 120px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .brand-logo-content {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.brand-logo-content:hover .brand-swiper-btn-prev,
.brand-logo-content:hover .brand-swiper-btn-next {
  opacity: 1;
}

@media only screen and (max-width: 575px) {
  .brand-logo-item {
    text-align: center;
  }
}
.brand-logo-item img {
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.brand-logo-item:hover img {
  opacity: 1;
  -webkit-filter: inherit;
  /* Safari 6.0 - 9.0 */
  filter: inherit;
}

.brand-swiper-btn-prev,
.brand-swiper-btn-next {
  background-color: #fff;
  border: 1px solid #d9e7df;
  border-radius: 5px;
  color: #0f034a;
  cursor: pointer;
  font-size: 24px;
  height: 46px;
  width: 46px;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 50%;
  z-index: 1;
  transform: translate(0%, -50%);
  -webkit-transform: translate(0%, -50%);
  -moz-transform: translate(0%, -50%);
  -ms-transform: translate(0%, -50%);
  -o-transform: translate(0%, -50%);
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1399.98px) {
  .brand-swiper-btn-prev,
.brand-swiper-btn-next {
    font-size: 22px;
    height: 40px;
    width: 40px;
  }
}
@media only screen and (max-width: 1199px) {
  .brand-swiper-btn-prev,
.brand-swiper-btn-next {
    display: none;
  }
  

  
}
.brand-swiper-btn-prev:hover,
.brand-swiper-btn-next:hover {
  background-color: #feed00;
  border-color: #feed00;
  color: #fff;
}

.brand-swiper-btn-prev {
  left: -60px;
}
@media only screen and (max-width: 1399.98px) {
  .brand-swiper-btn-prev {
    left: 0;
  }
}

.brand-swiper-btn-next {
  right: -60px;
}
@media only screen and (max-width: 1399.98px) {
  .brand-swiper-btn-next {
    right: 0;
  }
}

/*
-----------------------------------------------------------------------
  About CSS
-----------------------------------------------------------------------
*/
.about-default-wrapper .container {
  padding-bottom: 80px;
  padding-top: 160px;
}
@media only screen and (max-width: 1199px) {
  .about-default-wrapper .container {
    padding-bottom: 40px;
    padding-top: 120px;
  }
  
  .nav-anclas{
	  margin-top:50px !important;
  }
  
}

@media only screen and (max-width: 991px) {
  .about-thumb {
    margin-bottom: 30px;
  }
}
.about-thumb img {
  border-radius: 5px;
}
@media only screen and (max-width: 991px) {
  .about-thumb img {
    width: 100%;
  }
}
.about-thumb.about-thumb-two {
  margin-right: -30px;
}
@media only screen and (max-width: 991px) {
  .about-thumb.about-thumb-two {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 991px) {
  .about-thumb.about-thumb-two {
    margin-right: 0;
  }
}

.about-content {
  margin-top: -1px;
  padding-left: 70px;
}
@media only screen and (max-width: 1199px) {
  .about-content {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .about-content {
    margin-top: 40px;
    padding-left: 0;
  }
}
.about-content .sub-title {
  color: #feed00;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 17px;
}
@media only screen and (max-width: 1199px) {
  .about-content .sub-title {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
.about-content .title {
  font-size: 30px;
  line-height: 1.5;
  margin-bottom: 18px;
}
@media only screen and (max-width: 1199px) {
  .about-content .title {
    font-size: 24px;
    margin-bottom: 8px;
  }
}
.about-content .desc {
  margin-bottom: 33px;
}
@media only screen and (max-width: 1199px) {
  .about-content .desc {
    margin-bottom: 22px;
  }
}

.member-join-content {
  background-color: #f4f7f7;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 30px 30px;
}
@media only screen and (max-width: 1199px) {
  .member-join-content {
    padding: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .member-join-content {
    padding: 15px 10px;
  }
}
.member-join-content .member-join-thumb {
  margin-right: 10px;
      display: flex;
    align-items: center;
    gap: 16px;
}

.member-join-content .member-join-thumb h6 {
	color:#6B6B6B;
}

.member-join-content .member-join-thumb a {
	font-size:16px;
	color:#121212;
}

.member-join-content .member-join-thumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}
.member-join-content .member-join-thumb ul li {
  display: inline-block;
  margin-left: -14px;
}
.member-join-content .member-join-thumb ul li:first-child {
  margin-left: 0;
}
.member-join-content .member-join-thumb ul li a {
  display: inline-block;
  position: relative;
}
.member-join-content .member-join-thumb ul li a img {
  border: 2px solid #fff;
  border-radius: 50%;
}
.member-join-content .member-join-thumb ul li a span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  background-color: #e3e5e4;
  border-radius: 50%;
  border: 2px solid #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  font-weight: 600;
  padding-bottom: 2px;
}
.member-join-content .join-now-btn {
  background-color: #feed00;
  color: #fff;
  display: inline-block;
  font-size: 15px;
  width: 150px;
  height: 48px;
  border-radius: 5px;
  text-align: center;
  line-height: 47px;
  
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1199px) {
  .member-join-content .join-now-btn {
    font-size: 14px;
    width: 100px;
    height: 38px;
    border-radius: 5px;
    line-height: 37px;
  }
}
.member-join-content .join-now-btn:hover {
  background-color: #010E34;
  color: #fff;
}

/*
-----------------------------------------------------------------------
  Team CSS
-----------------------------------------------------------------------
*/
.team-details-area .container {
  padding-top: 120px;
  padding-bottom: 111px;
}
@media only screen and (max-width: 1199px) {
  .team-details-area .container {
    padding-top: 80px;
    padding-bottom: 82px;
  }
}
@media only screen and (max-width: 991px) {
  .team-details-area .container {
    padding-bottom: 50px;
  }
}

.team-area .container {
  padding-bottom: 70px;
}
@media only screen and (max-width: 1199px) {
  .team-area .container {
    padding-bottom: 54px;
  }
}

.team-inner2-area .container {
  padding-top: 120px;
  padding-bottom: 100px;
}
@media only screen and (max-width: 1199px) {
  .team-inner2-area .container {
    padding-top: 80px;
    padding-bottom: 60px;
  }
}
.team-inner2-area .pagination-area {
  margin-top: 40px;
}
@media only screen and (max-width: 1199px) {
  .team-inner2-area .pagination-area {
    margin-top: 10px;
  }
}

.team-item {
  background-color: #f4f7f7;
  border: 1px solid #f4f7f7;
  border-radius: 5px;
  margin-bottom: 30px;
  padding: 44px 45px 44px;
  position: relative;
  text-align: center;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.team-item .thumb img {
  border-radius: 5px;
}
.team-item .content {
  margin-top: 25px;
}
.team-item .content .title {
  font-size: 22px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1199px) {
  .team-item .content .title {
    font-size: 18px;
  }
}
.team-item .content .title a {
  color: #010E34;
}
.team-item .content .title a:hover {
  color: #feed00;
}
.team-item .content .sub-title {
  color: #feed00;
  font-size: 15px;
  font-weight: 400;
  margin-bottom: 18px;
}
.team-item .content .rating-box {
  color: #ff9600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  letter-spacing: 2px;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 9px;
}
.team-item .content .desc {
  font-size: 15px;
  line-height: 1.87;
  margin-bottom: 24px;
}
.team-item .bookmark-icon,
.team-item .bookmark-icon-hover {
  position: absolute;
  top: 14px;
  right: 19px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
.team-item .bookmark-icon-hover {
  opacity: 0;
}
.team-item:hover {
  background-color: #fff;
  border-color: #eee;
}
.team-item:hover .bookmark-icon {
  opacity: 0;
}
.team-item:hover .bookmark-icon-hover {
  opacity: 1;
}

.team-details-wrap {
  background-color: #f4f7f7;
  border-radius: 5px;
  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-bottom: 50px;
  padding: 45px 44px 45px 50px;
}
@media only screen and (max-width: 1199px) {
  .team-details-wrap {
    padding: 30px 30px 30px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .team-details-wrap {
    display: block;
  }
}
@media only screen and (max-width: 479.98px) {
  .team-details-wrap {
    text-align: center;
  }
}

.team-details-info {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 479.98px) {
  .team-details-info {
    display: block;
  }
}
.team-details-info .thumb img {
  border-radius: 5px;
}
.team-details-info .content {
  margin-top: -3px;
  margin-left: 30px;
}
@media only screen and (max-width: 1199px) {
  .team-details-info .content {
    margin-left: 15px;
  }
}
@media only screen and (max-width: 479.98px) {
  .team-details-info .content {
    margin-left: 0;
    margin-top: 14px;
  }
}
.team-details-info .content .title {
  font-size: 24px;
  margin-bottom: 9px;
}
@media only screen and (max-width: 1199px) {
  .team-details-info .content .title {
    font-size: 20px;
    margin-bottom: 6px;
  }
}
.team-details-info .content .sub-title {
  color: #feed00;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1199px) {
  .team-details-info .content .sub-title {
    font-size: 14px;
  }
}
.team-details-info .content .info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0;
}
@media only screen and (max-width: 479.98px) {
  .team-details-info .content .info-list {
    display: block;
  }
}
.team-details-info .content .info-list li {
  color: #9E9E9E;
  font-size: 14px;
  line-height: 1;
}
.team-details-info .content .info-list li + li {
  margin-left: 19px;
}
@media only screen and (max-width: 1199px) {
  .team-details-info .content .info-list li + li {
    margin-left: 8px;
  }
}
@media only screen and (max-width: 479.98px) {
  .team-details-info .content .info-list li + li {
    margin-top: 10px;
    margin-left: 0;
  }
}

@media only screen and (max-width: 767px) {
  .team-details-btn {
    margin-top: 20px;
  }
}
.team-details-btn .btn-theme {
  -webkit-box-shadow: none;
          box-shadow: none;
  font-size: 15px;
  font-weight: 500;
  display: block;
  height: 50px;
  padding: 8px;
  width: 170px;
}
@media only screen and (max-width: 1199px) {
  .team-details-btn .btn-theme {
    font-size: 14px;
    height: 45px;
    padding: 4px 4px 5px;
    width: 152px;
  }
}
@media only screen and (max-width: 479.98px) {
  .team-details-btn .btn-theme {
    display: inline-block;
  }
}
.team-details-btn .btn-theme.btn-light {
  background-color: #fff;
  border-color: #ced4da;
  color: #010E34;
  margin-bottom: 10px;
}
.team-details-btn .btn-theme.btn-light:hover {
  background-color: #feed00;
  border-color: #feed00;
  color: #fff;
}

.team-details-item {
  margin-top: -7px;
  margin-right: 70px;
}
@media only screen and (max-width: 1199px) {
  .team-details-item {
    margin-right: 0;
  }
}
@media only screen and (max-width: 991px) {
  .team-details-item {
    margin-bottom: 55px;
  }
}
.team-details-item .content {
  margin-bottom: 38px;
}
@media only screen and (max-width: 1199px) {
  .team-details-item .content {
    margin-bottom: 28px;
  }
}
.team-details-item .content .title {
  font-size: 30px;
  margin-bottom: 22px;
}
@media only screen and (max-width: 1199px) {
  .team-details-item .content .title {
    font-size: 26px;
    margin-bottom: 14px;
  }
}
.team-details-item .content .desc {
  margin-bottom: 19px;
  margin-right: -4px;
}
@media only screen and (max-width: 1199px) {
  .team-details-item .content .desc {
    margin-bottom: 16px;
    margin-right: 0;
  }
}

.candidate-details-wrap {
  margin-bottom: 51px;
}
@media only screen and (max-width: 1199px) {
  .candidate-details-wrap {
    margin-bottom: 40px;
  }
}
.candidate-details-wrap .content-title {
  font-size: 30px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 1199px) {
  .candidate-details-wrap .content-title {
    font-size: 26px;
    margin-bottom: 26px;
  }
}

.candidate-details-content {
  border-left: 5px solid #f4f7f7;
  border-radius: 5px;
  position: relative;
  padding-left: 70px;
}
@media only screen and (max-width: 1199px) {
  .candidate-details-content {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 479.98px) {
  .candidate-details-content {
    padding-left: 0;
    border: none;
  }
}
.candidate-details-content .content-item {
  padding: 28px 0 25px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .candidate-details-content .content-item {
    padding: 18px 0 18px;
  }
}
@media only screen and (max-width: 479.98px) {
  .candidate-details-content .content-item {
    padding: 13px 0 13px;
  }
}
.candidate-details-content .content-item:before {
  background-color: #feed00;
  bottom: 0;
  content: "";
  height: 0;
  width: 5px;
  position: absolute;
  top: auto;
  left: -75px;
  border-radius: 50px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1199px) {
  .candidate-details-content .content-item:before {
    left: -35px;
  }
}
@media only screen and (max-width: 479.98px) {
  .candidate-details-content .content-item:before {
    display: none;
  }
}
.candidate-details-content .content-item .title {
  font-size: 20px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1199px) {
  .candidate-details-content .content-item .title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 479.98px) {
  .candidate-details-content .content-item .title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.candidate-details-content .content-item .title span {
  color: #9E9E9E;
  font-size: 15px;
  font-weight: 500;
}
@media only screen and (max-width: 479.98px) {
  .candidate-details-content .content-item .title span {
    font-size: 12px;
  }
}
.candidate-details-content .content-item .sub-title {
  color: #feed00;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}
@media only screen and (max-width: 1199px) {
  .candidate-details-content .content-item .sub-title {
    font-size: 14px;
    margin-bottom: 14px;
  }
}
.candidate-details-content .content-item .desc {
  max-width: 630px;
}
.candidate-details-content .content-item:first-child {
  padding-top: 0;
}
.candidate-details-content .content-item:last-child {
  padding-bottom: 0;
}
.candidate-details-content .content-item:hover:before {
  height: 100%;
  bottom: auto;
  top: 0;
}

.content-list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 479.98px) {
  .content-list-wrap {
    display: block;
  }
}
.content-list-wrap .content {
  border-right: 5px solid #ebeeee;
  margin-right: 125px;
  padding-right: 126px;
  border-radius: 5px;
}
@media only screen and (max-width: 1199px) {
  .content-list-wrap .content {
    border-right: 4px solid #ebeeee;
    margin-right: 47px;
    padding-right: 46px;
    border-radius: 5px;
  }
}
@media only screen and (max-width: 575px) {
  .content-list-wrap .content {
    border-right: none;
    margin-right: 40px;
    padding-right: 0;
    border-radius: 0;
  }
}
.content-list-wrap .content:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
@media only screen and (max-width: 479.98px) {
  .content-list-wrap .content:last-child {
    padding-top: 40px;
  }
}

.team-details-list li {
  font-size: 16px;
  display: block;
  line-height: 1.75;
}
.team-details-list li i {
  margin-right: 12px;
}

.employers-details-wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f4f7f7;
  border-radius: 5px;
  margin-bottom: 50px;
  padding: 45px 50px 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 1199px) {
  .employers-details-wrap {
    padding: 35px;
  }
}
@media only screen and (max-width: 991px) {
  .employers-details-wrap {
    display: block;
  }
}
@media only screen and (max-width: 479.98px) {
  .employers-details-wrap {
    padding: 30px;
  }
}

.employers-details-info {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 479.98px) {
  .employers-details-info {
    display: block;
  }
}
.employers-details-info .thumb img {
  border-radius: 5px;
}
.employers-details-info .content {
  margin-top: -3px;
  margin-left: 30px;
}
@media only screen and (max-width: 1199px) {
  .employers-details-info .content {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 479.98px) {
  .employers-details-info .content {
    margin-left: 0;
    margin-top: 15px;
  }
}
.employers-details-info .content .title {
  font-size: 24px;
  margin-bottom: 13px;
}
@media only screen and (max-width: 991px) {
  .employers-details-info .content .title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
.employers-details-info .content .sub-title {
  color: #feed00;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}
.employers-details-info .content .info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 18px;
}
@media only screen and (max-width: 575px) {
  .employers-details-info .content .info-list {
    display: block;
  }
}
.employers-details-info .content .info-list li {
  color: #9E9E9E;
  font-size: 14px;
  line-height: 1;
}
.employers-details-info .content .info-list li + li {
  margin-left: 19px;
}
@media only screen and (max-width: 575px) {
  .employers-details-info .content .info-list li + li {
    margin-left: 0;
    margin-top: 10px;
  }
}
.employers-details-info .btn-theme {
  font-size: 15px;
  font-weight: 500;
  height: 45px;
  width: 120px;
  padding: 8px;
}
@media only screen and (max-width: 1199px) {
  .employers-details-info .btn-theme {
    font-size: 13px;
    height: 35px;
    width: 110px;
    padding: 2px;
  }
}
.employers-details-info .btn-theme.btn-white {
  border-color: #ced4da;
  color: #010E34;
}
.employers-details-info .btn-theme.btn-white:hover {
  color: #fff;
  background-color: #feed00;
  border-color: #feed00;
}
.employers-details-info .btn-theme + .btn-theme {
  margin-left: 11px;
}
@media only screen and (max-width: 575px) {
  .employers-details-info .btn-theme + .btn-theme {
    margin-left: 0;
  }
}

.employers-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 1199px) {
  .employers-counter {
    margin-top: 20px;
  }
}
.employers-counter .counter-item {
  background-color: #fff;
  border-radius: 5px;
  text-align: center;
  padding: 17px 10px 20px;
  width: 100px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 479.98px) {
  .employers-counter .counter-item {
    padding: 5px;
    width: 70px;
  }
}
.employers-counter .counter-item .counter {
  font-size: 32px;
  margin-bottom: 7px;
}
@media only screen and (max-width: 1199px) {
  .employers-counter .counter-item .counter {
    font-size: 28px;
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 479.98px) {
  .employers-counter .counter-item .counter {
    font-size: 22px;
    margin-bottom: 3px;
  }
}
.employers-counter .counter-item .title {
  color: #feed00;
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 0;
}
@media only screen and (max-width: 1199px) {
  .employers-counter .counter-item .title {
    font-size: 14px;
  }
}
@media only screen and (max-width: 479.98px) {
  .employers-counter .counter-item .title {
    font-size: 13px;
  }
}
.employers-counter .counter-item + .counter-item {
  margin-left: 20px;
}
@media only screen and (max-width: 479.98px) {
  .employers-counter .counter-item + .counter-item {
    margin-left: 5px;
  }
}
.employers-counter .counter-item:hover {
  background-color: #feed00;
}
.employers-counter .counter-item:hover .counter {
  color: #fff;
}
.employers-counter .counter-item:hover .title {
  color: #fff;
}

.employers-details-item {
  margin-top: -4px;
  margin-right: 70px;
}
@media only screen and (max-width: 1199px) {
  .employers-details-item {
    margin-right: 0;
  }
}
.employers-details-item .content {
  margin-bottom: 44px;
}
@media only screen and (max-width: 1199px) {
  .employers-details-item .content {
    margin-bottom: 24px;
  }
}
.employers-details-item .content .title {
  font-size: 30px;
  margin-bottom: 22px;
}
@media only screen and (max-width: 1199px) {
  .employers-details-item .content .title {
    font-size: 26px;
    margin-bottom: 12px;
  }
}
.employers-details-item .content .desc {
  margin-bottom: 19px;
  margin-right: -4px;
}
@media only screen and (max-width: 767px) {
  .employers-details-item .content .desc {
    font-size: 15px;
    margin-right: 0;
  }
}
.employers-details-item .employers-details-list li {
  font-size: 16px;
  display: block;
  line-height: 1.75;
  position: relative;
  padding-left: 30px;
}
@media only screen and (max-width: 1199px) {
  .employers-details-item .employers-details-list li {
    font-size: 15px;
  }
}
.employers-details-item .employers-details-list li i {
  margin-right: 12px;
  margin-right: 12px;
  position: absolute;
  left: -2px;
  top: 6px;
}

/*
-----------------------------------------------------------------------
  Testimonial CSS
-----------------------------------------------------------------------
*/
.testimonial-area .container {
  padding-bottom: 117px;
}
@media only screen and (max-width: 1199px) {
  .testimonial-area .container {
    padding-bottom: 83px;
  }
}

.provee-destac-item {
  background-color: #fff;
  border-radius: 5px;
  /*padding: 47px 48px 45px;*/
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
  height:350px;
}
.provee-destac-item a{
  display:block;
  height:100%;
  width:100%;
}

.lf-background {
    background-position: 50%;
    height: 100%;
    width: 100%;
    background-size: cover;
    transition: all .2s ease;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
}

@media only screen and (max-width: 991px) {
  .provee-destac-item {
    /*padding: 32px 33px 30px;*/
  }
}
.provee-destac-item .testi-author {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.provee-destac-item .testi-author .testi-thumb img {
  border-radius: 5px;
  min-width: 75px;
}
.provee-destac-item .testi-author .testi-info {
  margin-top: -4px;
  margin-left: 30px;
}
@media only screen and (max-width: 991px) {
  .provee-destac-item .testi-author .testi-info {
    margin-left: 14px;
  }
}
.provee-destac-item .testi-author .testi-info .name {
  font-size: 22px;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}
@media only screen and (max-width: 1199px) {
  .provee-destac-item .testi-author .testi-info .name {
    font-size: 18px;
  }
}
.provee-destac-item .testi-author .testi-info .designation {
  color: #feed00;
  font-size: 15px;
  display: block;
  line-height: 1;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}
.provee-destac-item .testi-content {
  margin-top: 24px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .provee-destac-item .testi-content {
    margin-top: 18px;
  }
}
.provee-destac-item .testi-content .desc {
  margin-right: -2px;
  margin-bottom: 25px;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}
.provee-destac-item .testi-content .rating-box {
  color: #ff9600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  letter-spacing: 2px;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}
.provee-destac-item .testi-content .testi-quote {
  position: absolute;
  z-index: -1;
  left: 75px;
  top: 18px;
}
@media only screen and (max-width: 1199px) {
  .provee-destac-item .testi-content .testi-quote {
    position: absolute;
    z-index: -1;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.provee-destac-item:hover {
  background-color: #feed00;
}
.provee-destac-item:hover .testi-author .testi-info .name {
  color: #fff;
}
.provee-destac-item:hover .testi-author .testi-info .designation {
  color: #fff;
}
.provee-destac-item:hover .testi-content .desc {
  color: #fff;
}
.provee-destac-item:hover .testi-content .rating-box {
  color: #fff;
}

.testimonial-style2-item {
  background-color: #f4f7f7;
}

.provee-destac-slider-container .swiper-pagination {
  bottom: 0;
  line-height: 1;
  position: relative;
  margin-top: 20px;
}
.provee-destac-slider-container .swiper-pagination .swiper-pagination-bullet {
  background-color: #d5d5d5;
  height: 12px;
  opacity: 1;
  margin: 0;
  width: 12px;
}
.provee-destac-slider-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #feed00;
}
.provee-destac-slider-container .swiper-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 10px;
}

/*
-----------------------------------------------------------------------
    Funfact CSS
-----------------------------------------------------------------------
*/
.funfact-area .container {
  padding-top: 75px;
  padding-bottom: 48px;
}
@media only screen and (max-width: 1199px) {
  .funfact-area .container {
    padding-top: 64px;
    padding-bottom: 37px;
  }
}

.funfact-item {
  margin-bottom: 30px;
  position: relative;
  text-align: center;
}
.funfact-item:before {
  content: url("../img/icons/fun1.png");
  height: 10px;
  position: absolute;
  width: 34px;
  right: -107px;
  top: 22px;
}
@media only screen and (max-width: 1199px) {
  .funfact-item:before {
    right: -84px;
  }
}
@media only screen and (max-width: 991px) {
  .funfact-item:before {
    right: -53px;
    top: 17px;
  }
}
@media only screen and (max-width: 767px) {
  .funfact-item:before {
    display: none;
  }
}
.funfact-item .counter-number {
  font-size: 34.93px;
  margin-bottom: 8px;
  min-width: 90px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1199px) {
  .funfact-item .counter-number {
    font-size: 28px;
    margin-bottom: 4px;
    min-width: 80px;
  }
}
.funfact-item .counter-title {
  color: #feed00;
  font-size: 15.97px;
  font-weight: 500;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1199px) {
  .funfact-item .counter-title {
    font-size: 14px;
  }
}
.funfact-item:hover .counter-number {
  color: #feed00;
}
.funfact-item:hover .counter-title {
  color: #010E34;
}

.funfact-content-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 767px) {
  .funfact-content-wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .funfact-content-wrap .funfact-col {
    width: 50%;
  }
}
.funfact-content-wrap .funfact-col:last-child .funfact-item:before {
  display: none;
}

/*
-----------------------------------------------------------------------
  Form CSS
-----------------------------------------------------------------------
*/
#contact-form {
  position: relative;
}
#contact-form .form-group, .form-group {
  margin-bottom: 10px;
}
#contact-form .form-control {
  border: 1px solid #ced4da;
  border-radius: 4px;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #010E34;
  height: 55px;
  font-size: 16px;
  padding: 0 20px 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1199px) {
  #contact-form .form-control {
    height: 45px;
    font-size: 14px;
  }
  
  .select2-container--default .select2-selection--single .select2-selection__rendered{
	  /*line-height:45px !important;
	  line-height:45px !important;*/
  }
  
  .select2-container .select2-selection--single{
	  /*height:45px !important;*/
  }
  
  
}
#contact-form .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #9E9E9E;
}
#contact-form .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #9E9E9E;
}
#contact-form .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #9E9E9E;
}
#contact-form .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #9E9E9E;
}
#contact-form .form-control:active, #contact-form .form-control:focus {
  /*border-color: #feed00;*/
}
#contact-form textarea.form-control {
  height: 100px;
  padding-top: 15px;
  resize:none;
}
@media only screen and (max-width: 1199px) {
  #contact-form textarea.form-control {
    height: 120px;
  }
}
#contact-form .btn-theme {
  /*font-size: 16px;
  height: 55px;
  margin-top: 10px;*/
}
@media only screen and (max-width: 1199px) {
  #contact-form .btn-theme {
    /*font-size: 15px;
    height: 45px;
    margin-top: 5px;*/
  }
}

.job-search-form {
  position: relative;
  z-index: 1;
}
.job-search-form .form-group {
  margin-bottom: 0;
  position:relative;
}
@media only screen and (max-width: 991px) {
  .job-search-form .form-group {
    margin-bottom: 10px;
  }
}
.job-search-form .form-control {
  background-color: #fff;
  border-radius: 5px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #9E9E9E;
  line-height: 68px;
  font-size: 15px;
  height: 68px;
  outline: none;
  margin: 0;
  padding: 1px 46px 0 32px;
  /*width: 300px;*/
  position:relative;
}
@media only screen and (max-width: 1199px) {
  .job-search-form .form-control {
    /*width: 277px;*/
    /*height: 54px;*/
    line-height: 68px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .job-search-form .form-control {
    width: 100%;
  }
}
.job-search-form .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #9E9E9E;
}
.job-search-form .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #9E9E9E;
}
.job-search-form .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #9E9E9E;
}
.job-search-form .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #9E9E9E;
}
.job-search-form select.form-control {
  appearance: none;
  background-image: url("../img/icons/arrow-down.webp");
  background-repeat: no-repeat;
  background-position: right 29px center;
  background-size: auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-top: 0;
}
.job-search-form .btn-form-search {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #feed00;
  border-radius: 5px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  height: 56px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  position: absolute;
    top: 4px;
    right: 4px;
}

.job-search-form .btn-form-search:hover{
	background:#febf00;
	    color: #ffffff;
}

@media only screen and (max-width: 1199px) {
  .job-search-form .btn-form-search {
    height: 54px;
  }
}
@media only screen and (max-width: 991px) {
  .job-search-form .btn-form-search {
    /*width: 100%;*/
  }
}

.comment-form .form-group .form-control {
  border: 1px solid transparent;
  background-color: #f4f7f7;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 5px;
  font-size: 16px;
  margin-bottom: 20px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1199px) {
  .comment-form .form-group .form-control {
    font-size: 14px;
  }
}
.comment-form .form-group .form-control:active, .comment-form .form-group .form-control:focus {
  border: 1px solid #ededed;
  background-color: transparent;
}
.comment-form .form-group input {
  height: 55px;
  line-height: 55px;
  padding: 5px 25px;
}
.comment-form .form-group textarea {
  height: 285px;
  padding: 15px 25px;
}
@media only screen and (max-width: 1199px) {
  .comment-form .form-group textarea {
    height: 215px;
  }
}
@media only screen and (max-width: 991px) {
  .comment-form .form-group textarea {
    height: 190px;
  }
}
@media only screen and (max-width: 767px) {
  .comment-form .form-group textarea {
    height: 160px;
  }
}
.comment-form .form-group .btn-theme {
  font-size: 17px;
  font-weight: 500;
  height: 60px;
  width: 200px;
  margin-top: 10px;
}
@media only screen and (max-width: 1199px) {
  .comment-form .form-group .btn-theme {
    font-size: 14px;
    height: 50px;
    width: 160px;
    padding: 8px;
  }
}
.comment-form .form-group .btn-theme i {
  font-size: 20px;
  position: relative;
  top: 3px;
  left: 2px;
}

.login-register-form {
  position: relative;
}
.login-register-form .form-group {
  margin-bottom: 10px;
}
.login-register-form .form-control {
  /*border: 1px solid #ced4da;
  border-radius: 5px;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #010E34;
  height: 55px;
  font-size: 16px;
  padding: 0 20px 0;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;*/
}
@media only screen and (max-width: 1199px) {
  .login-register-form .form-control {
    /*height: 45px;
    font-size: 14px;*/
  }
}
.login-register-form .form-control::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #9E9E9E;
}
.login-register-form .form-control::-moz-placeholder {
  /* Firefox 19+ */
  color: #9E9E9E;
}
.login-register-form .form-control:-ms-input-placeholder {
  /* IE 10+ */
  color: #9E9E9E;
}
.login-register-form .form-control:-moz-placeholder {
  /* Firefox 18- */
  color: #9E9E9E;
}
.login-register-form .form-control:active, .login-register-form .form-control:focus {
  /*border-color: #feed00;*/
}
.login-register-form .remember-forgot-info {
  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-top: 16px;
}
@media only screen and (max-width: 1199px) {
  .login-register-form .remember-forgot-info {
    margin-top: 6px;
  }
}
@media only screen and (max-width: 479.98px) {
  .login-register-form .remember-forgot-info {
    display: block;
  }
}
.login-register-form .remember .form-check-input {
  border: 1px solid #e3e4e9;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  margin-top: 5px;
  margin-right: 5px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* currently supported by Chrome, Edge, Opera and Firefox */
}
.login-register-form .remember .form-check-input:checked {
  background-color: #feed00;
  border-color: #feed00;
}
.login-register-form .remember .form-check-input:checked + .form-check-label {
  /*color: #feed00;*/
  font-weight:500;
}
.login-register-form .remember .form-check-label {
  cursor: pointer;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* currently supported by Chrome, Edge, Opera and Firefox */
}
.login-register-form .remember .form-check-label:hover {
  /*color: #feed00;*/
}
@media only screen and (max-width: 479.98px) {
  .login-register-form .forgot-password {
    margin-top: 5px;
  }
}
.login-register-form .forgot-password a {
  font-size: 15px;
  position: relative;
  top: -1px;
  text-decoration:underline;
}

.login-register-form .forgot-password a:hover {
  color:#010E34;
}

.login-register-form .btn-theme {
  /*display: block;
  width: 100%;
  font-size: 16px;
  margin-top: 13px;
  padding: 12px 35px 10px;*/
}
@media only screen and (max-width: 1199px) {
  .login-register-form .btn-theme {
    /*font-size: 15px;
    margin-top: 4px;
    padding: 8px 35px 6px;*/
  }
}

.register-form-wrap .form-title .title {
  margin-bottom: 41px;
  padding-bottom: 24px;
}
@media only screen and (max-width: 1199px) {
  .register-form-wrap .form-title .title {
    margin-bottom: 30px;
    padding-bottom: 14px;
  }
}
.register-form-wrap .nav {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 30px;
}
@media only screen and (max-width: 479.98px) {
  .register-form-wrap .nav {
    display: block;
  }
}
.register-form-wrap .nav .nav-item + .nav-item {
  margin-left: 20px;
}
@media only screen and (max-width: 479.98px) {
  .register-form-wrap .nav .nav-item + .nav-item {
    margin-left: 0;
    margin-top: 10px;
  }
}
.register-form-wrap .nav .nav-link {
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 5px;
  color: #010E34;
  font-size: 15px;
  width: 130px;
  height: 42px;
  padding: 4px;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 479.98px) {
  .register-form-wrap .nav .nav-link {
    width: 100%;
  }
}
.register-form-wrap .nav .nav-link i {
  font-size: 13px;
  position: relative;
  top: -1px;
  margin-right: 8px;
}
.register-form-wrap .nav .nav-link.active {
  background-color: #feed00;
  border-color: #feed00;
  color: #fff;
}
.register-form-wrap .nav .nav-link#candidate-tab i {
  font-size: 16px;
  top: 0;
  margin-top: 3px;
}
.register-form-wrap .nav .nav-link:hover {
  background-color: #feed00;
  border-color: #feed00;
  color: #fff;
}

.login-register-form-info {
  text-align: center;
  margin: 14px 0 0;
}
.login-register-form-info p {
  color: #9E9E9E;
  font-size: 15px;
}

.login-register-form-info p a:hover{
	color:#010E34;
}

.form-message .alert-success {
  padding: 10px 20px;
  margin-top: 20px;
}
.form-message .btn-close {
  background: transparent;
  font-size: 19px;
  line-height: 22px;
  padding: 0 0 0 1px;
  margin: 0;
  background-color: #85bba2;
  border: 1px solid #79a591;
  text-align: center;
  border-radius: 4px;
  width: 20px;
  height: 20px;
  position: relative;
  top: 2px;
  margin-right: 11px;
}
.form-message .btn-close span {
  position: relative;
  top: -2px;
}

/*
-----------------------------------------------------------------------
  Page Header CSS
-----------------------------------------------------------------------
*/
.page-header-area {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  position: relative;
  overflow: hidden;
  padding: 360px 0 80px;
  z-index: 1;
}
@media only screen and (max-width: 1199px) {
  .page-header-area {
    background-position: center center;
    padding: 240px 0 84px;
  }
}
@media only screen and (max-width: 767px) {
  .page-header-area {
    padding: 150px 0 84px;
  }
}

.page-header-content {
  text-align: center;
}
.page-header-content .title {
  color: #fefefe;
  font-weight: 600;
  
  font-size: 45px;
  letter-spacing: 0;
  margin: 0 0 22px 0;
  line-height: 1;
}
@media only screen and (max-width: 1199px) {
  .page-header-content .title {
    font-size: 36px;
    margin: 0 0 22px 0;
  }
}
@media only screen and (max-width: 767px) {
  .page-header-content .title {
    font-size: 32px;
  }
}

.breadcrumb-area {
  margin-bottom: 0;
}
.breadcrumb-area .breadcrumb {
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: unset;
      flex-wrap: unset;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 0;
  padding: 0;
}
.breadcrumb-area .breadcrumb li {
  color: #feed00;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.4px;
  
}
@media only screen and (max-width: 1199px) {
  .breadcrumb-area .breadcrumb li {
    font-size: 14px;
  }
}
.breadcrumb-area .breadcrumb li a {
  color: #fefefe;
}
.breadcrumb-area .breadcrumb li a:hover {
  color: #feed00;
}
.breadcrumb-area .breadcrumb .breadcrumb-sep {
  margin: 0 7px 0 9px;
  vertical-align: 0;
}

/*
-----------------------------------------------------------------------
  Sidebar CSS
-----------------------------------------------------------------------
*/
@media only screen and (max-width: 1199px) {
  .blog-sidebar {
    margin-top: 50px;
  }
}
.blog-sidebar-left {
  margin-right: 30px;
}
@media only screen and (max-width: 1199px) {
  .blog-sidebar-left {
    margin-right: 0;
  }
}
.blog-sidebar-right {
  margin-left: 30px;
}
@media only screen and (max-width: 1199px) {
  .blog-sidebar-right {
    margin-left: 0;
  }
}
.blog-sidebar .widget-title {
  margin-bottom: 39px;
}
@media only screen and (max-width: 991px) {
  .blog-sidebar .widget-title {
    margin-bottom: 30px;
  }
}
.blog-sidebar .widget-title .title {
  font-size: 30px;
}
@media only screen and (max-width: 991px) {
  .blog-sidebar .widget-title .title {
    font-size: 24px;
  }
}
.blog-sidebar .widget-item {
  margin-bottom: 63px;
}
@media only screen and (max-width: 1199px) {
  .blog-sidebar .widget-item {
    margin-bottom: 28px;
  }
}
.blog-sidebar .widget-search-box .form-input-item {
  position: relative;
}
.blog-sidebar .widget-search-box .form-input-item input {
  border: 1px solid #ededed;
  border-radius: 5px;
  color: #9E9E9E;
  font-size: 15px;
  height: 60px;
  width: 100%;
  line-height: 60px;
  padding: 5px 60px 5px 25px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.blog-sidebar .widget-search-box .form-input-item input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #9E9E9E;
}
.blog-sidebar .widget-search-box .form-input-item input::-moz-placeholder {
  /* Firefox 19+ */
  color: #9E9E9E;
}
.blog-sidebar .widget-search-box .form-input-item input:-ms-input-placeholder {
  /* IE 10+ */
  color: #9E9E9E;
}
.blog-sidebar .widget-search-box .form-input-item input:-moz-placeholder {
  /* Firefox 18- */
  color: #9E9E9E;
}
.blog-sidebar .widget-search-box .form-input-item input:focus {
  border: 1px solid #feed00;
}
.blog-sidebar .widget-search-box .form-input-item button {
  background-color: #feed00;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 15px;
  height: 48px;
  line-height: 1;
  position: absolute;
  right: 6px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  width: 48px;
}
.blog-sidebar .widget-search-box .form-input-item button:hover {
  background-color: #010E34;
}
.blog-sidebar .widget-categories {
  background-color: #f4f7f7;
  border-radius: 5px;
  padding: 50px 35px;
}
@media only screen and (max-width: 767px) {
  .blog-sidebar .widget-categories {
    padding: 30px;
  }
}
.blog-sidebar .widget-categories ul {
  margin-bottom: 0;
}
.blog-sidebar .widget-categories ul li {
  margin-bottom: 18px;
}
.blog-sidebar .widget-categories ul li:last-child {
  margin-bottom: 0;
}
.blog-sidebar .widget-categories ul li a {
  background-color: #fff;
  border-radius: 5px;
  color: #9E9E9E;
  display: block;
  font-size: 15px;
  padding: 18px 23px 16px 24px;
  line-height: 1;
}
@media only screen and (max-width: 575px) {
  .blog-sidebar .widget-categories ul li a {
    font-size: 15px;
  }
}
.blog-sidebar .widget-categories ul li a span {
  float: right;
}
.blog-sidebar .widget-categories ul li a:hover {
  background-color: #feed00;
  color: #fff;
}
.blog-sidebar .widget-post {
  background-color: #f4f7f7;
  border-radius: 5px;
  padding: 44px 30px 44px;
}
@media only screen and (max-width: 767px) {
  .blog-sidebar .widget-post {
    padding: 30px 20px 30px;
  }
}
@media only screen and (max-width: 575px) {
  .blog-sidebar .widget-post {
    padding: 25px 16px 25px;
  }
}
.blog-sidebar .widget-blog-post {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #eaeaea;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 22px;
  padding: 0 10px 22px;
}
.blog-sidebar .widget-blog-post:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.blog-sidebar .widget-blog-post .thumb {
  margin-right: 24px;
  min-width: 71px;
}
@media only screen and (max-width: 575px) {
  .blog-sidebar .widget-blog-post .thumb {
    margin-right: 12px;
  }
}
.blog-sidebar .widget-blog-post .thumb img {
  border-radius: 5px;
  width: 100%;
}
.blog-sidebar .widget-blog-post .content {
  margin-top: -11px;
}
@media only screen and (max-width: 991px) {
  .blog-sidebar .widget-blog-post .content {
    margin-top: 0;
  }
}
.blog-sidebar .widget-blog-post .content h4 {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media only screen and (max-width: 575px) {
  .blog-sidebar .widget-blog-post .content h4 {
    font-size: 15px;
  }
}
.blog-sidebar .widget-blog-post .content h4 a {
  color: #010E34;
}
.blog-sidebar .widget-blog-post .content h4 a:hover {
  color: #feed00;
}
.blog-sidebar .widget-blog-post .content .meta {
  line-height: 1;
}
.blog-sidebar .widget-blog-post .content .meta .post-date {
  color: #feed00;
  font-size: 14px;
  line-height: 1;
}
.blog-sidebar .widget-blog-post .content .meta .post-date i {
  font-size: 12px;
  margin-right: 4px;
  position: relative;
  top: -1px;
}
.blog-sidebar .widget-tags {
  background-color: #f4f7f7;
  border-radius: 5px;
  padding: 44px 26px 34px 35px;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  .blog-sidebar .widget-tags {
    text-align: left;
  }
}
@media only screen and (max-width: 767px) {
  .blog-sidebar .widget-tags {
    padding: 30px 30px 20px;
  }
}
@media only screen and (max-width: 575px) {
  .blog-sidebar .widget-tags {
    padding: 26px 25px 21px;
  }
}
.blog-sidebar .widget-tags ul {
  margin-bottom: 0;
}
.blog-sidebar .widget-tags ul li {
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 6px;
}
@media only screen and (max-width: 575px) {
  .blog-sidebar .widget-tags ul li {
    margin-bottom: 5px;
    margin-right: 0px;
  }
}
.blog-sidebar .widget-tags ul li a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  border-radius: 5px;
  color: #9E9E9E;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  height: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 111px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 1199px) {
  .blog-sidebar .widget-tags ul li a {
    height: auto;
    width: auto;
    padding: 6px 18px;
    font-size: 14px;
  }
}
.blog-sidebar .widget-tags ul li a:hover {
  background-color: #feed00;
  color: #fff;
}
.blog-sidebar .widget-tags ul li .tags-padding {
  height: 50px;
  width: 151px;
}
@media only screen and (max-width: 1199px) {
  .blog-sidebar .widget-tags ul li .tags-padding {
    height: auto;
    width: auto;
  }
}

@media only screen and (max-width: 991px) {
  .job-sidebar {
    margin-top: 20px;
  }
}
.job-sidebar .widget-item {
  background-color: #f4f7f7;
  border-radius: 5px;
  /*margin-left: -30px;*/
  margin-bottom: 60px;
  padding: 24px;
}
@media only screen and (max-width: 1199px) {
  .job-sidebar .widget-item {
    margin-left: 0;
    margin-bottom: 30px;
    padding: 28px 35px 18px;
  }
}
@media only screen and (max-width: 575px) {
  .job-sidebar .widget-item {
    padding: 28px 16px 18px;
  }
}
.job-sidebar .widget-item.widget-tag {
  padding: 44px 40px 43px 45px;
}
@media only screen and (max-width: 1199px) {
  .job-sidebar .widget-item.widget-tag {
    padding: 28px 35px 27px;
  }
}
@media only screen and (max-width: 575px) {
  .job-sidebar .widget-item.widget-tag {
    padding: 28px 30px 18px;
  }
}
.job-sidebar .widget-title .title {
  display: inline-block;
  font-size: 30px;
  position: relative;
  padding-bottom: 26px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1199px) {
  .job-sidebar .widget-title .title {
    font-size: 26px;
    padding-bottom: 16px;
    margin-bottom: 18px;
  }
}
.job-sidebar .widget-title .title:before {
  background-color: #feed00;
  content: "";
  height: 3px;
  position: absolute;
  width: 50px;
  bottom: 0;
  left: 0;
}
.job-sidebar .summery-info .table {
  background-color: transparent;
  margin-bottom: 0;
}
.job-sidebar .summery-info .table tbody tr .table-name {
  color: #010E34;
  font-weight: 500;
  min-width: 136px;
}
@media only screen and (max-width: 1199px) {
  .job-sidebar .summery-info .table tbody tr .table-name {
    min-width: 96px;
  }
}
.job-sidebar .summery-info .table tbody tr .dotted {
  min-width: 4px;
  padding-right: 28px;
}
@media only screen and (max-width: 1199px) {
  .job-sidebar .summery-info .table tbody tr .dotted {
    padding-right: 14px;
  }
}
.job-sidebar .summery-info .table tbody tr td {
  color: #9E9E9E;
  font-size: 15px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0 0 15px;
  min-width: 130px;
}
@media only screen and (max-width: 1199px) {
  .job-sidebar .summery-info .table tbody tr td {
    font-size: 14px;
  }
}
.job-sidebar .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5px;
  margin-bottom: 19px;
}
.job-sidebar .social-icons a {
  background-color: transparent;
  border: 1px solid #dfe2e7;
  border-radius: 5px;
  color: #05103b;
  height: 45px;
  font-size: 13px;
  width: 45px;
  text-align: center;
  line-height: 43px;
}
.job-sidebar .social-icons a + a {
  margin-left: 14px;
}
.job-sidebar .social-icons a:hover {
  background-color: #feed00;
  border-color: #feed00;
  color: #fff;
}
.job-sidebar .widget-tag-list a {
  border: 1px solid #dfe2e7;
  background-color: transparent;
  border-radius: 50px;
  display: inline-block;
  color: #616c7d;
  font-size: 13px;
  height: 25px;
  padding: 0 15px;
  line-height: 22px;
  margin-bottom: 7px;
  margin-left: 5px;
}
.job-sidebar .widget-tag-list a:hover {
  background-color: #feed00;
  border-color: #feed00;
  color: #fff;
}
@media only screen and (max-width: 1199px) {
  .job-sidebar .widget-tag-list br {
    display: none;
  }
}

.team-sidebar .widget-item {
  background-color: #f4f7f7;
  border-radius: 5px;
  margin-bottom: 60px;
  padding: 24px;
}
@media only screen and (max-width: 1199px) {
  .team-sidebar .widget-item {
    margin-bottom: 30px;
    margin-left: 0;
    padding: 24px;
  }
}
.team-sidebar .widget-item.widget-contact {
  padding: 44px 50px 50px;
}
@media only screen and (max-width: 1199px) {
  .team-sidebar .widget-item.widget-contact {
    padding: 25px 30px 30px;
  }
}
.team-sidebar .widget-item.widget-contact .widget-title .title {
  margin-bottom: 30px;
}
.team-sidebar .widget-title .title {
  display: block;
  font-size: 28px;
  position: relative;
  
}
@media only screen and (max-width: 1199px) {
  .team-sidebar .widget-title .title {
    font-size: 24px;
    margin-bottom: 4px;
  }
}

.widget-title{
	margin-bottom:16px;
}

.team-sidebar .widget-title .title:before {
  /*background-color: #feed00;
  content: "";
  height: 3px;
  position: absolute;
  width: 50px;
  bottom: 0;
  left: 0;*/
}
.team-sidebar .summery-info .table {
  background-color: transparent;
  margin-bottom: 0;
}
.team-sidebar .summery-info .table tbody tr .table-name {
  color: #010E34;
  font-weight: 500;
  /*min-width: 136px;*/
}
@media only screen and (max-width: 1199px) {
  .team-sidebar .summery-info .table tbody tr .table-name {
    min-width: auto;
  }
}
.team-sidebar .summery-info .table tbody tr .dotted {
  min-width: 4px;
  padding-right: 28px;
}
@media only screen and (max-width: 1199px) {
  .team-sidebar .summery-info .table tbody tr .dotted {
    min-width: auto;
  }
}
.team-sidebar .summery-info .table tbody tr td {
  color: #9E9E9E;
  font-size: 15px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0 0 15px;
  /*min-width: 130px;*/
}
@media only screen and (max-width: 1199px) {
  .team-sidebar .summery-info .table tbody tr td {
    min-width: auto;
  }
}
@media only screen and (max-width: 479.98px) {
  .team-sidebar .summery-info .table tbody tr td {
    font-size: 14px;
  }
}
.team-sidebar .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5px;
  margin-bottom: 19px;
}
.team-sidebar .social-icons a {
  background-color: transparent;
  border: 1px solid #dfe2e7;
  border-radius: 5px;
  color: #05103b;
  height: 45px;
  font-size: 13px;
  width: 45px;
  text-align: center;
  line-height: 43px;
}
.team-sidebar .social-icons a + a {
  margin-left: 14px;
}
.team-sidebar .social-icons a:hover {
  background-color: #feed00;
  border-color: #feed00;
  color: #fff;
}
.team-sidebar #contact-form textarea.form-control {
  height: 150px;
}
@media only screen and (max-width: 1199px) {
  .team-sidebar #contact-form textarea.form-control {
    height: 120px;
  }
}

.employers-sidebar .widget-item {
  background-color: #f4f7f7;
  border-radius: 5px;
  margin-left: -30px;
  margin-bottom: 60px;
  padding: 44px 50px 31px;
}
@media only screen and (max-width: 1199px) {
  .employers-sidebar .widget-item {
    margin-left: 0;
    padding: 29px 34px 16px;
    margin-bottom: 30px;
  }
}
.employers-sidebar .widget-item.widget-contact {
  padding: 44px 50px 50px;
}
@media only screen and (max-width: 1199px) {
  .employers-sidebar .widget-item.widget-contact {
    padding: 29px 34px 36px;
  }
}
.employers-sidebar .widget-item.widget-contact .widget-title .title {
  margin-bottom: 30px;
}
.employers-sidebar .widget-title .title {
  display: inline-block;
  font-size: 30px;
  position: relative;
  padding-bottom: 26px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1199px) {
  .employers-sidebar .widget-title .title {
    font-size: 24px;
    padding-bottom: 16px;
    margin-bottom: 14px;
  }
}
.employers-sidebar .widget-title .title:before {
  background-color: #feed00;
  content: "";
  height: 3px;
  position: absolute;
  width: 50px;
  bottom: 0;
  left: 0;
}
.employers-sidebar .summery-info .table {
  background-color: transparent;
  margin-bottom: 0;
}
.employers-sidebar .summery-info .table tbody tr .table-name {
  color: #010E34;
  font-weight: 500;
  min-width: 136px;
}
@media only screen and (max-width: 1199px) {
  .employers-sidebar .summery-info .table tbody tr .table-name {
    min-width: auto;
  }
}
.employers-sidebar .summery-info .table tbody tr .dotted {
  min-width: 4px;
  padding-right: 28px;
}
@media only screen and (max-width: 1199px) {
  .employers-sidebar .summery-info .table tbody tr .dotted {
    padding-right: 10px;
    padding-left: 8px;
    padding-bottom: 0;
    min-width: auto;
  }
}
.employers-sidebar .summery-info .table tbody tr td {
  color: #9E9E9E;
  font-size: 15px;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0 0 15px;
  min-width: 130px;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .employers-sidebar .summery-info .table tbody tr td {
    font-size: 14px;
    min-width: auto;
    padding: 0 0 12px;
  }
}
.employers-sidebar .summery-info .table tbody .rating {
  position: absolute;
  display: inline-block;
}
.employers-sidebar .summery-info .table tbody .rating:before {
  color: #ff9600;
  content: "";
  font-family: "IcoFont";
  font-size: 13px;
  position: relative;
  top: -1px;
  margin-left: 3px;
}
.employers-sidebar .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 5px;
  margin-bottom: 19px;
}
.employers-sidebar .social-icons a {
  background-color: transparent;
  border: 1px solid #dfe2e7;
  border-radius: 5px;
  color: #05103b;
  height: 45px;
  font-size: 13px;
  width: 45px;
  text-align: center;
  line-height: 43px;
}
.employers-sidebar .social-icons a + a {
  margin-left: 14px;
}
.employers-sidebar .social-icons a:hover {
  background-color: #feed00;
  border-color: #feed00;
  color: #fff;
}
.employers-sidebar #contact-form textarea.form-control {
  height: 150px;
}
@media only screen and (max-width: 1199px) {
  .employers-sidebar #contact-form textarea.form-control {
    height: 120px;
  }
}

/*
-----------------------------------------------------------------------
  Pagination CSS
-----------------------------------------------------------------------
*/
.pagination-area {
  margin-bottom: 20px;
}
.pagination-area .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 10px;
  margin-bottom: 0;
}
.pagination-area .page-numbers li .page-number {
  background-color: #f4f7f7;
  border-radius: 50px;
  color: #010E34;
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  width: 58px;
  height: 58px;
  line-height: 58px;
  text-align: center;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 1199px) {
  .pagination-area .page-numbers li .page-number {
    font-size: 14px;
    width: 48px;
    height: 48px;
    line-height: 48px;
  }
}
.pagination-area .page-numbers li .page-number:hover {
  background-color: #feed00;
  border-color: #feed00;
  color: #000;
}
.pagination-area .page-numbers li .page-number:hover i {
  color: #fff;
}
.pagination-area .page-numbers li .page-number.active {
  background-color: #feed00;
  border-color: #feed00;
  color: #000;
}
.pagination-area .page-numbers li .page-number i {
  color: #010E34;
  font-size: 20px;
  margin: 0;
  position: relative;
  top: 2px;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 991px) {
  .pagination-area .page-numbers li .page-number i {
    font-size: 17px;
  }
}
.pagination-area .page-numbers li + li {
  margin-left: 17px;
}
@media only screen and (max-width: 575px) {
  .pagination-area .page-numbers li + li {
    margin-left: 10px;
  }
}

/*
-----------------------------------------------------------------------
  Page Not Found CSS
-----------------------------------------------------------------------
*/
.page-not-found-wrap {
  padding: 120px 0 120px;
}
@media only screen and (max-width: 1199px) {
  .page-not-found-wrap {
    padding: 80px 0 80px;
  }
}
.page-not-found-wrap .page-not-found-thumb {
  text-align: center;
  margin-bottom: 54px;
}
@media only screen and (max-width: 767px) {
  .page-not-found-wrap .page-not-found-thumb {
    margin-bottom: 40px;
  }
}
.page-not-found-wrap .page-not-found-content {
  text-align: center;
}
.page-not-found-wrap .page-not-found-content .title {
  font-size: 40px;
  margin-bottom: 39px;
}
@media only screen and (max-width: 1199px) {
  .page-not-found-wrap .page-not-found-content .title {
    font-size: 35px;
    margin-bottom: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .page-not-found-wrap .page-not-found-content .title {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.page-not-found-wrap .page-not-found-content .btn-theme {
  font-size: 16px;
  width: 201px;
  height: 55px;
  line-height: 54px;
  padding: 0;
}
@media only screen and (max-width: 1199px) {
  .page-not-found-wrap .page-not-found-content .btn-theme {
    font-size: 16px;
    width: 135px;
    height: 45px;
    line-height: 43px;
  }
}
.page-not-found-wrap .page-not-found-content .btn-theme i {
  font-size: 20px;
  position: relative;
  top: 1px;
  right: 8px;
}
@media only screen and (max-width: 1199px) {
  .page-not-found-wrap .page-not-found-content .btn-theme i {
    font-size: 17px;
    top: 1px;
    right: -4px;
  }
}

/*
-----------------------------------------------------------------------
  Blog CSS
-----------------------------------------------------------------------
*/
@media only screen and (max-width: 1199px) {
  .blog-details-area .container {
    padding-top: 74px;
    padding-bottom: 80px;
  }
}

.related-post-area .container {
  padding-top: 73px;
  padding-bottom: 67px;
}
@media only screen and (max-width: 1199px) {
  .related-post-area .container {
    padding-top: 70px;
    padding-bottom: 74px;
  }
}

.blog-home-area .container {
  padding-bottom: 120px;
}
@media only screen and (max-width: 1199px) {
  .blog-home-area .container {
    padding-bottom: 84px;
  }
}
@media only screen and (max-width: 991px) {
  .blog-home-area .container {
    padding-bottom: 46px;
  }
}

.blog-right-sidebar-area .container {
  padding-bottom: 100px;
  padding-top: 120px;
}
@media only screen and (max-width: 1199px) {
  .blog-right-sidebar-area .container {
    padding-bottom: 80px;
    padding-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-right-sidebar-area .container {
    padding-bottom: 53px;
  }
}

.post-home-style .post-item {
  margin-bottom: 0;
}
@media only screen and (max-width: 767px) {
  .post-home-style .post-item {
    margin-bottom: 40px;
  }
}

@media only screen and (max-width: 991px) {
  .post-home-list-style {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media only screen and (max-width: 767px) {
  .post-home-list-style {
    display: block;
  }
}
.post-home-list-style .post-item {
  border-bottom: 2px solid #f2f5f5;
  margin-bottom: 40px;
  padding-bottom: 41px;
}
.post-home-list-style .post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  .post-home-list-style .post-item:last-child {
    border-bottom: 2px solid #f2f5f5;
    padding-top: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 991px) and (max-width: 767px) {
  .post-home-list-style .post-item:last-child {
    margin-top: 0;
    padding-bottom: 41px;
  }
}
@media only screen and (max-width: 991px) {
  .post-home-list-style .post-item {
    border-bottom: 2px solid #f2f5f5;
    max-width: 325px;
    border-top: 2px solid #f2f5f5;
    padding-top: 40px;
    margin-top: 40px;
  }
}
@media only screen and (max-width: 991px) and (max-width: 767px) {
  .post-home-list-style .post-item {
    margin-top: 0;
    max-width: none;
    width: 100%;
  }
}

.post-item {
  margin-bottom: 70px;
}
@media only screen and (max-width: 1199px) {
  .post-item {
    margin-bottom: 50px;
  }
}
.post-item .thumb {
  border-radius: 5px;
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .post-item .thumb {
    margin-bottom: 30px;
  }
}
.post-item .thumb img {
  border-radius: 5px;
  width: 100%;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.post-item .content .author {
  color: #929292;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 15px;
}
@media only screen and (max-width: 991px) {
  .post-item .content .author {
    font-size: 13px;
  }
}
.post-item .content .author a {
  color: #010E34;
  margin-left: 5px;
}
.post-item .content .author a:hover {
  color: #feed00;
}
.post-item .content .title {
  font-size: 23px;
  line-height: 1.522;
  margin-bottom: 4px;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  .post-item .content .title {
    font-size: 18px;
  }
}
@media only screen and (max-width: 991px) {
  .post-item .content .title {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .post-item .content .title {
    font-size: 17px;
  }
}
.post-item .content .title a {
  color: #010E34;
}
.post-item .content .title a:hover {
  color: #feed00;
}
.post-item .content p {
  line-height: 1.625;
  margin-bottom: 20px;
}
.post-item .content .meta {
  color: #010E34;
  font-size: 14px;
  line-height: 1;
}
.post-item .content .meta .dots {
  margin: 0 11px;
}
.post-item .content .meta .dots:before {
  background-color: #0f034a;
  border-radius: 50%;
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  top: -3px;
  position: relative;
}
.post-item:hover .thumb img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

.post-item2 .thumb {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.post-item2 .thumb img {
  border-radius: 5px;
  transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}
@media only screen and (max-width: 575px) {
  .post-item2 .thumb img {
    width: 100%;
  }
}
.post-item2 .content {
  margin-top: 38px;
}
.post-item2 .content .author {
  color: #929292;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 14px;
}
@media only screen and (max-width: 1199px) {
  .post-item2 .content .author {
    font-size: 14px;
    margin-bottom: 8px;
  }
}
.post-item2 .content .author a {
  color: #010E34;
}
.post-item2 .content .author a:hover {
  color: #feed00;
}
.post-item2 .content .title {
  font-size: 23px;
  line-height: 1.56;
  margin-bottom: 9px;
}
@media only screen and (max-width: 1199px) {
  .post-item2 .content .title {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .post-item2 .content .title {
    font-size: 18px;
  }
}
.post-item2 .content .title a {
  color: #010E34;
}
.post-item2 .content .title a:hover {
  color: #feed00;
}
.post-item2 .content .meta {
  color: #010E34;
  font-size: 14px;
}
@media only screen and (max-width: 1199px) {
  .post-item2 .content .meta {
    font-size: 13px;
  }
}
.post-item2 .content .meta .dots:before {
  border-radius: 50%;
  background-color: #0f034a;
  content: "";
  display: inline-block;
  position: relative;
  height: 4px;
  width: 4px;
  top: -2px;
  margin: 0 15px 0 5px;
}
.post-item2:hover .thumb img {
  transform: scale(1.05);
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
}

.post-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 43px;
}
@media only screen and (max-width: 1199px) {
  .post-title-wrap {
    margin-bottom: 15px;
  }
}
.post-title-wrap .title {
  font-size: 35px;
  margin-bottom: 0;
  margin-top: 3px;
}
@media only screen and (max-width: 1199px) {
  .post-title-wrap .title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 479.98px) {
  .post-title-wrap .title {
    font-size: 22px;
    margin-top: 7px;
  }
}

.swiper-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.swiper-btn-wrap .related-post-swiper-btn-prev,
.swiper-btn-wrap .related-post-swiper-btn-next {
  background-color: #fff;
  border: 1px solid #d9e7df;
  border-radius: 5px;
  color: #0f034a;
  font-size: 25px;
  height: 52px;
  width: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (max-width: 1199px) {
  .swiper-btn-wrap .related-post-swiper-btn-prev,
.swiper-btn-wrap .related-post-swiper-btn-next {
    font-size: 20px;
    height: 42px;
    width: 42px;
  }
}
.swiper-btn-wrap .related-post-swiper-btn-prev:hover,
.swiper-btn-wrap .related-post-swiper-btn-next:hover {
  background-color: #feed00;
  border-color: #feed00;
  color: #fff;
}
.swiper-btn-wrap .related-post-swiper-btn-next {
  margin-left: 20px;
}
@media only screen and (max-width: 1199px) {
  .swiper-btn-wrap .related-post-swiper-btn-next {
    margin-left: 8px;
  }
}

.post-details-info {
  margin-bottom: 70px;
}
@media only screen and (max-width: 1199px) {
  .post-details-info {
    margin-bottom: 50px;
  }
}
.post-details-info .meta {
  color: #9E9E9E;
  font-size: 15px;
  font-family: "DM Sans", sans-serif;
  margin-bottom: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 1199px) {
  .post-details-info .meta {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
.post-details-info .meta .author a {
  color: #010E34;
  font-weight: 500;
}
.post-details-info .meta .author a:hover {
  color: #feed00;
}
.post-details-info .meta .dots {
  margin: 0 14px;
  position: relative;
  top: -3px;
}
@media only screen and (max-width: 479.98px) {
  .post-details-info .meta .dots {
    display: none;
  }
}
.post-details-info .meta .dots:before {
  background-color: #0f034a;
  border-radius: 50%;
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
}
@media only screen and (max-width: 479.98px) {
  .post-details-info .meta span + span {
    margin-left: 8px;
  }
}
.post-details-info .title {
  font-size: 42px;
  max-width: 1010px;
  margin: 0 auto 45px;
  line-height: 1.309;
}
@media only screen and (max-width: 1199px) {
  .post-details-info .title {
    font-size: 36px;
    margin: 0 auto 34px;
  }
}
@media only screen and (max-width: 991px) {
  .post-details-info .title {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .post-details-info .title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 575px) {
  .post-details-info .title {
    font-size: 20px;
    margin-bottom: 25px;
  }
}
.post-details-info .widget-tags ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0;
}
@media only screen and (max-width: 1199px) {
  .post-details-info .widget-tags ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.post-details-info .widget-tags ul li {
  display: inline-block;
}
.post-details-info .widget-tags ul li a {
  background-color: #f4f7f7;
  border-radius: 5px;
  color: #010E34;
  display: inline-block;
  font-size: 15px;
  padding: 6px 42px 6px;
  margin-top: 5px;
}
@media only screen and (max-width: 1199px) {
  .post-details-info .widget-tags ul li a {
    padding: 6px 15px 6px;
  }
}
.post-details-info .widget-tags ul li a:hover {
  background-color: #feed00;
  color: #fff;
}
.post-details-info .widget-tags ul li + li {
  margin-left: 20px;
}
@media only screen and (max-width: 1199px) {
  .post-details-info .widget-tags ul li + li {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 479.98px) {
  .post-details-info .widget-tags ul li + li {
    margin-left: 5px;
  }
}

.post-details-thumb {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1199px) {
  .post-details-thumb {
    margin-bottom: 30px;
  }
}
.post-details-thumb img {
  border-radius: 5px;
}

.post-details-content .desc-title {
  font-size: 27px;
  margin-bottom: 18px;
  line-height: 1.48148;
}
@media only screen and (max-width: 991px) {
  .post-details-content .desc-title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .post-details-content .desc-title {
    font-size: 20px;
  }
}
.post-details-content .desc-title2 {
  font-size: 27px;
  margin-top: 32px;
  margin-bottom: 19px;
}
@media only screen and (max-width: 991px) {
  .post-details-content .desc-title2 {
    font-size: 25px;
    margin-top: 32px;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .post-details-content .desc-title2 {
    font-size: 20px;
  }
}
.post-details-content .desc-title3 {
  font-size: 26px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 991px) {
  .post-details-content .desc-title3 {
    font-size: 24px;
    margin-bottom: 17px;
  }
}
@media only screen and (max-width: 767px) {
  .post-details-content .desc-title3 {
    font-size: 20px;
  }
}
.post-details-content p {
  line-height: 1.8125;
  margin-right: -2px;
  margin-bottom: 19px;
}
.post-details-content .content-thumb {
  margin-bottom: 45px;
  margin-top: 39px;
}
.post-details-content .content-thumb img {
  border-radius: 5px;
}
.post-details-content .post-details-footer {
  border-bottom: 1px solid #f0f0f0;
  border-top: 1px solid #f0f0f0;
  margin: 48px 0 0;
}
.post-details-content .widget-social-icons {
  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;
  padding: 18px 69px 18px;
}
@media only screen and (max-width: 991px) {
  .post-details-content .widget-social-icons {
    padding: 18px 0;
  }
}
@media only screen and (max-width: 479.98px) {
  .post-details-content .widget-social-icons {
    padding: 10px 0;
  }
}
.post-details-content .widget-social-icons span {
  color: #010E34;
  font-weight: 600;
  font-size: 19px;
  line-height: 1;
  margin-top: -3px;
}
@media only screen and (max-width: 479.98px) {
  .post-details-content .widget-social-icons span {
    font-size: 16px;
  }
}
.post-details-content .widget-social-icons .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.post-details-content .widget-social-icons .social-icons a + a {
  margin-left: 17px;
}
@media only screen and (max-width: 479.98px) {
  .post-details-content .widget-social-icons .social-icons a + a {
    margin-left: 6px;
  }
}
.post-details-content .widget-social-icons a {
  background-color: #f4f7f7;
  border-radius: 5px;
  color: #22262a;
  display: inline-block;
  font-size: 14px;
  height: 45px;
  width: 45px;
  line-height: 45px;
  text-align: center;
}
@media only screen and (max-width: 575px) {
  .post-details-content .widget-social-icons a {
    height: 35px;
    line-height: 35px;
    width: 35px;
  }
}
@media only screen and (max-width: 479.98px) {
  .post-details-content .widget-social-icons a {
    height: 30px;
    line-height: 30px;
    width: 30px;
    font-size: 12px;
  }
}
.post-details-content .widget-social-icons a:hover {
  background-color: #feed00;
  color: #fff;
}

.blockquote-item {
  background-color: #feed00;
  border-radius: 5px;
  padding: 69px 40px 65px;
  margin-top: 49px;
  margin-bottom: 42px;
}
@media only screen and (max-width: 1199px) {
  .blockquote-item {
    padding: 30px 30px 27px;
  }
}
@media only screen and (max-width: 767px) {
  .blockquote-item {
    padding: 40px 30px;
  }
}
@media only screen and (max-width: 575px) {
  .blockquote-item {
    padding: 40px 15px;
  }
}
.blockquote-item .content {
  padding: 0;
  text-align: center;
}
.blockquote-item .content p {
  color: #fff;
  font-weight: 600;
  font-size: 44px;
  margin-bottom: 0;
  line-height: 1.545454;
}
@media only screen and (max-width: 1199px) {
  .blockquote-item .content p {
    font-size: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .blockquote-item .content p {
    font-size: 20px;
  }
}
.blockquote-item .content p span {
  font-weight: 700;
}

.post-details-content-list {
  margin-top: 32px;
  margin-bottom: 44px;
}
.post-details-content-list .title {
  font-size: 26px;
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .post-details-content-list .title {
    font-size: 24px;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 767px) {
  .post-details-content-list .title {
    font-size: 20px;
  }
}
.post-details-content-list .list-style li a {
  border: 1px solid #ededed;
  border-radius: 5px;
  color: #feed00;
  display: block;
  font-size: 16px;
  text-shadow: 0px 0px 100px rgba(0, 0, 0, 0.1);
  padding: 15px 27px 14px;
  transition: all 0.2s ease-out;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
}
@media only screen and (max-width: 767px) {
  .post-details-content-list .list-style li a {
    display: -ms-inline-grid;
    display: inline-grid;
  }
}
.post-details-content-list .list-style li a:hover {
  background-color: #f4f7f7;
  border-color: #f4f7f7;
}
.post-details-content-list .list-style li a i {
  margin-right: 17px;
}
.post-details-content-list .list-style li + li {
  margin-top: 10px;
}

.comment-area .main-title {
  font-size: 30px;
  margin-bottom: 38px;
}
@media only screen and (max-width: 1199px) {
  .comment-area .main-title {
    font-size: 26px;
    margin-bottom: 26px;
  }
}
@media only screen and (max-width: 575px) {
  .comment-area .main-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

.comment-view-area {
  padding: 78px 0 70px;
}
@media only screen and (max-width: 1199px) {
  .comment-view-area {
    padding: 73px 0 74px;
  }
}

.single-comment {
  position: relative;
  border: 1px solid #ededed;
  border-radius: 5px;
  margin-bottom: 30px;
  padding: 44px 36px 24px;
}
@media only screen and (max-width: 1199px) {
  .single-comment {
    padding: 40px 25px 25px;
  }
}
.single-comment .author-info {
  position: relative;
}
.single-comment .author-info .thumb {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 90px;
  min-height: 90px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: -15px;
}
@media only screen and (max-width: 767px) {
  .single-comment .author-info .thumb {
    top: 0;
  }
}
@media only screen and (max-width: 575px) {
  .single-comment .author-info .thumb {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-bottom: 20px;
    position: relative;
  }
}
.single-comment .author-info .author-details {
  margin-bottom: 31px;
  padding-left: 125px;
}
@media only screen and (max-width: 1199px) {
  .single-comment .author-info .author-details {
    padding-left: 100px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .single-comment .author-info .author-details {
    padding-left: 100px;
    margin-bottom: 30px;
    padding-top: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .single-comment .author-info .author-details {
    padding-left: 0;
    margin-bottom: 20px;
    padding-top: 0;
  }
}
.single-comment .author-info .author-details .title {
  font-size: 22px;
  margin-bottom: 6px;
}
@media only screen and (max-width: 1199px) {
  .single-comment .author-info .author-details .title {
    font-size: 20px;
    margin-bottom: 4px;
  }
}
.single-comment .author-info .author-details ul {
  margin-bottom: 0;
}
.single-comment .author-info .author-details ul li {
  color: #9E9E9E;
  font-size: 15px;
}
.single-comment .author-info .author-details ul li span {
  color: #feed00;
  margin-left: 0;
}
@media only screen and (max-width: 479.98px) {
  .single-comment .author-info .author-details ul li span {
    display: block;
  }
}
.single-comment .desc {
  color: #9E9E9E;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.66666;
  padding-left: 10px;
  margin-bottom: 0;
}
@media only screen and (max-width: 575px) {
  .single-comment .desc {
    font-size: 14px;
    padding-left: 0;
  }
}
.single-comment .btn-reply {
  background-color: #f4f7f7;
  position: absolute;
  top: 50px;
  right: 40px;
  font-weight: 600;
  font-size: 14px;
  width: 111px;
  height: 45px;
  border-radius: 5px;
  text-align: center;
  line-height: 45px;
}
@media only screen and (max-width: 767px) {
  .single-comment .btn-reply {
    position: relative;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    display: inline-block;
    margin-top: 20px;
    margin-left: 8px;
  }
}
@media only screen and (max-width: 575px) {
  .single-comment .btn-reply {
    margin-left: 0;
  }
}
.single-comment .btn-reply:hover {
  background-color: #feed00;
  color: #fff;
}
.single-comment .btn-reply i {
  margin-right: 11px;
}

.comment-reply {
  margin-left: 100px;
}
@media only screen and (max-width: 1199px) {
  .comment-reply {
    margin-left: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .comment-reply {
    margin-left: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .comment-reply {
    margin-left: 15px;
  }
}

.comment-form-wrap {
  padding-bottom: 120px;
}
@media only screen and (max-width: 1199px) {
  .comment-form-wrap {
    padding-bottom: 80px;
  }
}
/*
-----------------------------------------------------------------------
  Contact CSS
-----------------------------------------------------------------------
*/
.contact-page-area .container {
  padding-top: 160px;
  padding-bottom: 80px;
}

@media only screen and (max-width: 1199px) {
  .contact-page-area .container {
    padding-top: 120px;
    padding-bottom: 40px;
  }
}

.contact-info-wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f4f7f7;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 60px 70px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  /*margin-bottom: 70px;*/
}
@media only screen and (max-width: 1199px) {
  .contact-info-wrap {
    margin-bottom: 30px;
    padding: 30px 30px;
  }
}
@media only screen and (max-width: 991px) {
  .contact-info-wrap {
    padding: 0px 30px 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (max-width: 575px) {
  .contact-info-wrap {
    display: block;
    padding: 30px 30px 30px;
  }
}
.contact-info-wrap .info-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 991px) {
  .contact-info-wrap .info-item {
    width: 50%;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .contact-info-wrap .info-item {
    width: 100%;
  }
}
@media only screen and (max-width: 575px) {
  .contact-info-wrap .info-item:first-child {
    margin-top: 0;
  }
}
.contact-info-wrap .info-item .icon {
  background-color: #fff;
  border-radius: 5px;
  margin-right: 30px;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
}
@media only screen and (max-width: 1199px) {
  .contact-info-wrap .info-item .icon {
    margin-right: 14px;
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
}
@media only screen and (max-width: 1199px) {
  .contact-info-wrap .info-item .icon img {
    width: 30px;
  }
}
.contact-info-wrap .info-item .info .title {
  font-size: 24px;
}
@media only screen and (max-width: 1199px) {
  .contact-info-wrap .info-item .info .title {
    font-size: 20px;
    margin-bottom: 0;
  }
}
.contact-info-wrap .info-item .info p {
  font-size: 17px;
}
@media only screen and (max-width: 1199px) {
  .contact-info-wrap .info-item .info p {
    font-size: 15px;
  }
}
.contact-info-wrap .info-item .info p a {
  color: #121212;
}
.contact-info-wrap .info-item .info p a:hover {
  color: #febf00;
}

.contact-form {
  background-color: #f4f7f7;
  border-radius: 5px;
  padding: 65px 71px 69px;
}
@media only screen and (max-width: 1199px) {
  .contact-form {
    padding: 33px 40px 40px;
  }
}
@media only screen and (max-width: 991px) {
  .contact-form {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 575px) {
  .contact-form {
    padding: 25px 30px 30px;
  }
}
.contact-form .contact-form-title {
  display: inline-block;
  font-size: 30px;
  /*margin-bottom: 29px;*/
  position: relative;
  /*padding-bottom: 26px;*/
}
@media only screen and (max-width: 1199px) {
  .contact-form .contact-form-title {
    font-size: 24px;
    margin-bottom: 19px;
    padding-bottom: 16px;
  }
}
/*
.contact-form .contact-form-title:before {
  background-color: #feed00;
  border-radius: 2px;
  bottom: 0;
  content: "";
  left: 0;
  height: 3px;
  position: absolute;
  width: 50px;
}*/

.map-area {
  margin-left: 39px;
}
@media only screen and (max-width: 1199px) {
  .map-area {
    margin-left: 0;
  }
}
.map-area iframe {
  width: 100%;
  height: 715px;
  border-radius: 5px;
}
@media only screen and (max-width: 1199px) {
  .map-area iframe {
    height: 480px;
  }
}

/*
-----------------------------------------------------------------------
  Footer CSS
-----------------------------------------------------------------------
*/
.footer-area .widget-item {
  margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
  .footer-area .widget-item.widget-about {
    margin: 0 40px 30px;
    text-align: center;
  }
}
@media only screen and (max-width: 479.98px) {
  .footer-area .widget-item.widget-about {
    margin: 0 10px 30px;
  }
}
.footer-area .widget-title {
  font-size: 20px;
  color: #fff;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1199px) {
  .footer-area .widget-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-area .widget-title {
    display: none;
  }
}
.footer-area .nav-menu-item1 {
  /*margin-left: 41px;*/
}
@media only screen and (max-width: 1199px) {
  .footer-area .nav-menu-item1 {
    margin-left: 0;
  }
}
.footer-area .nav-menu-item2 {
  /*margin-left: 54px;*/
}
@media only screen and (max-width: 1199px) {
  .footer-area .nav-menu-item2 {
    margin-left: 0;
  }
}
.footer-area .nav-menu-item3 {
  margin-left: 67px;
}
@media only screen and (max-width: 1199px) {
  .footer-area .nav-menu-item3 {
    margin-left: 0;
  }
}
.footer-area .nav-menu-item4 {
  margin-left: 77px;
}
@media only screen and (max-width: 1199px) {
  .footer-area .nav-menu-item4 {
    margin-left: 0;
  }
}
.footer-area .widget-logo-area {
  margin-bottom: 16px;
  margin-top: -8px;
}

.footer-area .widget-logo-area a img{
	max-width: 125px;
}

@media only screen and (max-width: 1199px) {
  .footer-area .widget-logo-area {
    margin-bottom: 16px;
    margin-top: -3px;
  }
}
.footer-area .desc {
  color: #d8dadf;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1199px) {
  .footer-area .desc {
    font-size: 15px;
    margin-bottom: 20px;
  }
}
.footer-area .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .footer-area .social-icons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.footer-area .social-icons a {
  border: 2px solid #e3e8f1;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  display: inline-block;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 45px;
}
@media only screen and (max-width: 1199px) {
  .footer-area .social-icons a {
    font-size: 13px;
    height: 42px;
    width: 42px;
    line-height: 38px;
  }
}
.footer-area .social-icons a + a {
  margin-left: 15px;
}
.footer-area .social-icons a:hover {
  border-color: #feed00;
  background-color: #feed00;
}
.footer-area .nav-menu {
  margin-bottom: 0;
}
.footer-area .nav-menu li {
  color: #d8dadf;
  display: block;
  font-size: 18px;
  line-height: 50px;
}
.footer-area .nav-menu li a {
  color: #d8dadf;
  font-size: 18px;
  line-height: 50px;
  padding: 0 0;
  display: block;
}
@media only screen and (max-width: 1199px) {
  .footer-area .nav-menu li a {
    font-size: 14px;
    line-height: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-area .nav-menu li a {
    line-height: 35px;
  }
}
.footer-area .nav-menu li a:hover {
  color: #feed00;
}

.footer-top {
  background-color: #feed00;
  padding: 47px 0 43px;
}
@media only screen and (max-width: 991px) {
  .footer-top {
    padding: 47px 0 57px;
  }
}

@media only screen and (max-width: 991px) {
  .footer-newsletter-content {
    text-align: center;
  }
}
.footer-newsletter-content .title {
  color: #fefdfc;
  font-size: 40px;
  line-height: 1.5;
}
@media only screen and (max-width: 1199px) {
  .footer-newsletter-content .title {
    font-size: 32px;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .footer-newsletter-content .title {
    font-size: 25px;
  }
}

.footer-newsletter-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
 /* -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;*/
  margin-top: 28px;
}
@media only screen and (max-width: 1199px) {
  .footer-newsletter-form {
    margin-top: 18px;
  }
}
.footer-newsletter-form form {
  display: inline-block;
  position: relative;
}
@media only screen and (max-width: 1199px) {
  .footer-newsletter-form form {
    width: 100%;
  }
}
.footer-newsletter-form form [type=email] {
  background-color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  height: 56px;
  border-radius: 5px;
  font-size: 16px;
  color: #010E34;
  padding: 0 210px 0 32px;
}
.footer-newsletter-form form [type=email]::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #010E34;
}
.footer-newsletter-form form [type=email]::-moz-placeholder {
  /* Firefox 19+ */
  color: #010E34;
}
.footer-newsletter-form form [type=email]:-ms-input-placeholder {
  /* IE 10+ */
  color: #010E34;
}
.footer-newsletter-form form [type=email]:-moz-placeholder {
  /* Firefox 18- */
  color: #010E34;
}
@media only screen and (max-width: 1199px) {
  .footer-newsletter-form form [type=email] {
    font-size: 14px;
    height: 55px;
    padding: 0 210px 0 22px;
    width: 100%;
  }
}
@media only screen and (max-width: 991px) {
  .footer-newsletter-form form [type=email] {
    padding: 1px 148px 0 22px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-newsletter-form form [type=email] {
    padding: 1px 118px 0 22px;
  }
}
.footer-newsletter-form form [type=submit] {
  position: absolute;
  right: 4px;
  padding: 0;
  margin: 0;
  background-color: #feed00;
  color: #000;
  font-size: 16px;
  border: 2px solid #feed00;
  padding-left:20px;
  padding-right:20px;
  /*width: 201px;*/
  height: 48px;
  border-radius: 5px;
  top: 50%;
  -webkit-transform: translate(0%, -50%);
          transform: translate(0%, -50%);
}
@media only screen and (max-width: 1199px) {
  .footer-newsletter-form form [type=submit] {
    font-size: 14px;
    width: 140px;
    height: 46px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-newsletter-form form [type=submit] {
    font-size: 13px;
    width: 110px;
  }
}
.footer-newsletter-form form [type=submit]:hover {
  background-color: #feed00;
  border-color: #feed00;
  color: #fff;
}

.footer-main {
  background-color: #010E34;
  position: relative;
  padding: 80px 0 80px;
}
@media only screen and (max-width: 1199px) {
  .footer-main {
    padding: 75px 0 34px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-main {
    padding: 75px 0 44px;
  }
}
.footer-main .widget-collapsed-title {
  display: block;
  position: relative;
  background-color: #333640;
  border: 1px solid #3d3f48;
  height: 60px;
  line-height: 60px;
  padding: 0 20px;
  border-radius: 0;
  cursor: pointer;
  font-size: 15px;
  margin-bottom: 0;
  color: #fff;
  font-weight: 600;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* currently supported by Chrome, Edge, Opera and Firefox */
}
@media only screen and (min-width: 768px) {
  .footer-main .widget-collapsed-title {
    display: none;
  }
}
.footer-main .widget-collapsed-title:before {
  font-family: "IcoFont";
  font-size: 14px;
  content: "";
  position: absolute;
  right: 0;
  height: 100%;
  width: 60px;
  text-align: center;
}
.footer-main .widget-collapsed-title:not(.collapsed):before {
  content: "";
  font-family: "IcoFont";
}
.footer-main .widget-collapse-body {
  transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
}
@media only screen and (min-width: 768px) {
  .footer-main .widget-collapse-body {
    display: block;
  }
}
@media only screen and (max-width: 767px) {
  .footer-main .widget-collapse-body {
    background-color: #333640;
    border: 1px solid #3d3f48;
    border-top: none;
  }
}
@media only screen and (max-width: 767px) {
  .footer-main .widget-collapse-body .collapse-body {
    padding: 16px 24px 16px;
  }
}

.footer-bottom {
  background-color: #010E34;
  text-align: center;
}
.footer-bottom .footer-bottom-content {
  border-top: 1px solid rgba(232, 238, 244, 0.08);
  padding: 23px 0 24px;
}
.footer-bottom .copyright {
  color: #fff;
  font-size: 16px;
  margin-bottom: 0;
  position: relative;
  top: 1px;
}
@media only screen and (max-width: 1199px) {
  .footer-bottom .copyright {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-bottom .copyright {
    vertical-align: -1px;
  }
}
.footer-bottom .copyright a {
  color: #feed00;
}
.footer-bottom .copyright a:hover {
  color: #fff;
}
.footer-bottom .copyright i {
  color: #feed00;
  font-size: 16px;
  vertical-align: 0px;
  margin: 0;
}

.content-categ{
	padding:24px 20px;
	background:#fff;
	display:flex;
	flex-direction:column;
	margin-bottom:20px;
	border-radius:8px;
	transition: all 0.4s ease-out;
  -webkit-transition: all 0.4s ease-out;
  -moz-transition: all 0.4s ease-out;
  -ms-transition: all 0.4s ease-out;
  -o-transition: all 0.4s ease-out;
}

.content-categ:hover{
	background:#010E34;
}

.content-categ:hover h3, .content-categ:hover span{
	color:#fff;
}

.content-categ:hover .link-categ{
	color:#feed00;
}

.content-categ h3{
	font-size:20px;
	color:#010E34;
}

.content-categ span{
	font-size:16px;
	color:#9E9E9E;
}

.link-categ{
	color:#010E34;
}

.pag-interna .header-area{
	background:#010E34;
}

.pag-interna main{
	/*margin-top:20px;*/
}



.form-check .form-check-input{
	width:1.5em;
	height:1.5em;
}

.form-check .form-check-label{
	margin-top: 4px;
    margin-left: 8px;
	font-weight: normal;
}

.form-check-input:focus{
	box-shadow:none;
}

.list-check{
	margin-top:12px;
	max-height: 280px;
    overflow-y: scroll;
    margin-bottom: 24px;
}

.form-group label{
	display:block;
	font-weight: 500;
	color:#010E34;
  position: relative;
}

/*
.form-group span{
	display:inline-block;
	line-height:24px;
}
*/
.form-group label span{
	color:#ccc;
}


/*scroll style*/
.list-check::-webkit-scrollbar {
  width: 8px;
}

.list-check::-webkit-scrollbar-track {
  background-color: #e4e4e4;
  border-radius: 100px;
}

.list-check::-webkit-scrollbar-thumb {
  background-color: #c3c3c3;
  border-radius: 100px;
}
/*scroll style*/


.form-select-lg{
	font-size:16px;
	border-radius:4px;
}

.widget-filter{
	display:flex;
	justify-content:space-between;
	border-bottom: 1px solid #e5e5e5;
}

.widget-filter h5{
	margin-bottom:4px;
}

.widget-filter a{
	color:#f53f3f;
}

.widget-filter a:hover{
	color:#fead00;
	
}

.filter-phone{
	display: flex;
	align-items:center;
	justify-content:center;
	background:#e3e3e3;
	color:#010E34;
	padding:8px 0px;
	border-radius:50px;
	margin-bottom:12px;
	cursor:pointer;
	border: 1px solid #010E34;
}

.filter-phone:hover{
	background:#c1c1c1;
}

body.hola{
	overflow: hidden;
}

.block-filter-phone{
	position: fixed;
    z-index: 1030;
    top: 0px;
	bottom:0px;
	width:100%;
    background: #fff;
}

.block-filter-phone .team-sidebar{
	height:100vh;
}

.block-filter-phone .team-sidebar .widget-item{
	background: #fff;
}

.block-filter-phone .list-check{
	max-height: initial;
    overflow-y: initial;
}

.block-filter-phone .widget-contact-form{
	overflow-y: scroll;
    height: 100vh;
    padding-bottom: 200px;
	padding-right: 8px;
}

.block-btn{
	position:absolute;
	bottom:0px;
    background: #010E34;
    width: 100%;
    padding: 12px 24px;
	z-index:9;
}

.btn-cerrar{
	position: absolute;
    right: 24px;
    height: 40px;
    width: 40px;
    padding: 8px;
    background: #feed00;
    color: #000000;
    font-size: 24px;
    line-height: 24px;
	z-index:2;
	cursor:pointer;
    
}

.remember{
	display:inline-flex;
}

.block-perfil{
	display:flex;
	align-items:center;
	justify-content:start;
	margin-bottom:12px;
}

.block-perfil .foto-perfil{
  width: 100px;
  height: 100px;
}

.block-perfil .foto-perfil img{
    object-fit: cover;
    height: 100px;
    border-radius: 50%;
	
}

.block-perfil .agregar-foto{
	margin-left:12px;
  flex: 1;
}

.img-upload {
	background: #2250d6;
	border-radius: 4px;
	color: #fff;
	padding: 6px 12px;
	font-size: 13px;
	font-weight: 500;
	display: inline-block;
	position: relative;
	cursor: pointer;
	transition: ease all 0.5s;
    -webkit-transition: ease all 0.5s;
    -ms-transition: ease all 0.5s;
	display: inline-flex;
    display: -webkit-inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom:8px;
}
.img-upload:hover {
	background: #163cab;
	color: #fff;
}
.img-upload input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.toggle-password {
    float: right;
    cursor: pointer;
    margin-right: 10px;
    margin-top: -32px;
    font-size: 28px;
}

.header-area.hola{
	background: #010E34;
}

.steps-register{
	/*margin-bottom: 10px;*/
    border: 1px solid #c5c5c5;
    padding: 12px;
    border-radius: 8px;
}

.steps-register .steps-item .title{
	background: #f0f0f0;
    padding: 16px 24px;
    /*border-bottom: 1px solid #d1d1d1;*/
	border-radius: 8px;
}

.steps-register .steps-item .title i{
	font-size:28px;
}

/**/

.nav-anclas {
  width: 100%;
  height: auto; 
  /*position: fixed; 
  top: 0;*/
  position: sticky;
  top: 0px;
  z-index:5;
  background: #673AB7;
  margin-top:32px;
}

.nav-anclas ul {
  padding: 20px 0px;
  margin: 0 auto;
  list-style: none;
  text-align: center;
}
.nav-anclas ul li {
  display: inline-block;
  margin: 0 10px;
}
.nav-anclas ul li a {
  padding: 10px 0;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.2s ease;
}
.nav-anclas ul li a:hover {
  color: #cfb4ff;
}
a.active {
  border-bottom: 2px solid #feed00;
}

/* Headings */

h1 {
  font-size: 5rem;
  color: #34495E;
}

/* Sections */

section {
  
  
}
section:nth-child(even) {
  
}
section:nth-child(odd) {
  
}
.sections section:first-child {
  margin-top: 60px;
}
section.active {}

footer {
  height: 500px;
  background: #34495e;
}

.nav-anclas{
	
}


/*file*/
.file-drop-area {
      position: relative;
    display: flex;
    align-items: center;
    /* width: 350px; */
    border: 1px dotted #D9D9D9;
    max-width: 100%;
    padding: 16px;
    background-color: #F5F5F5;
    border-radius: 8px;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, .1); */
    transition: .3s;
}
.file-drop-area.is-active {
  background-color: #e6e6e6;
}

.fake-btn {
  flex-shrink: 0;
    background-color: #FFC107;
    border-radius: 3px;
    color: #000000;
    padding: 8px 15px;
    font-weight: 500;
    margin-right: 10px;
    font-size: 16px;
    /* text-transform: uppercase;*/
}

.file-msg {
      color: #000000;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.item-delete {
  display: none;
  position: absolute;
  right: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.item-delete:before {
  content: "";
  position: absolute;
  left: 0;
  transition: .3s;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg fill='%23bac1cb' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 438.5 438.5'%3e%3cpath d='M417.7 75.7A8.9 8.9 0 00411 73H323l-20-47.7c-2.8-7-8-13-15.4-18S272.5 0 264.9 0h-91.3C166 0 158.5 2.5 151 7.4c-7.4 5-12.5 11-15.4 18l-20 47.7H27.4a9 9 0 00-6.6 2.6 9 9 0 00-2.5 6.5v18.3c0 2.7.8 4.8 2.5 6.6a8.9 8.9 0 006.6 2.5h27.4v271.8c0 15.8 4.5 29.3 13.4 40.4a40.2 40.2 0 0032.3 16.7H338c12.6 0 23.4-5.7 32.3-17.2a64.8 64.8 0 0013.4-41V109.6h27.4c2.7 0 4.9-.8 6.6-2.5a8.9 8.9 0 002.6-6.6V82.2a9 9 0 00-2.6-6.5zm-248.4-36a8 8 0 014.9-3.2h90.5a8 8 0 014.8 3.2L283.2 73H155.3l14-33.4zm177.9 340.6a32.4 32.4 0 01-6.2 19.3c-1.4 1.6-2.4 2.4-3 2.4H100.5c-.6 0-1.6-.8-3-2.4a32.5 32.5 0 01-6.1-19.3V109.6h255.8v270.7z'/%3e%3cpath d='M137 347.2h18.3c2.7 0 4.9-.9 6.6-2.6a9 9 0 002.5-6.6V173.6a9 9 0 00-2.5-6.6 8.9 8.9 0 00-6.6-2.6H137c-2.6 0-4.8.9-6.5 2.6a8.9 8.9 0 00-2.6 6.6V338c0 2.7.9 4.9 2.6 6.6a8.9 8.9 0 006.5 2.6zM210.1 347.2h18.3a8.9 8.9 0 009.1-9.1V173.5c0-2.7-.8-4.9-2.5-6.6a8.9 8.9 0 00-6.6-2.6h-18.3a8.9 8.9 0 00-9.1 9.1V338a8.9 8.9 0 009.1 9.1zM283.2 347.2h18.3c2.7 0 4.8-.9 6.6-2.6a8.9 8.9 0 002.5-6.6V173.6c0-2.7-.8-4.9-2.5-6.6a8.9 8.9 0 00-6.6-2.6h-18.3a9 9 0 00-6.6 2.6 8.9 8.9 0 00-2.5 6.6V338a9 9 0 002.5 6.6 9 9 0 006.6 2.6z'/%3e%3c/svg%3e");
}

.item-delete:after {
  content: "";
  position: absolute;
  opacity: 0;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #f3dbff;
  border-radius: 50%;
  transition: .3s;
}

.item-delete:hover:after {
  transform: translate(-50%, -50%) scale(2.2);
  opacity: 1;
}

.item-delete:hover:before {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg fill='%234f555f' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 438.5 438.5'%3e%3cpath d='M417.7 75.7A8.9 8.9 0 00411 73H323l-20-47.7c-2.8-7-8-13-15.4-18S272.5 0 264.9 0h-91.3C166 0 158.5 2.5 151 7.4c-7.4 5-12.5 11-15.4 18l-20 47.7H27.4a9 9 0 00-6.6 2.6 9 9 0 00-2.5 6.5v18.3c0 2.7.8 4.8 2.5 6.6a8.9 8.9 0 006.6 2.5h27.4v271.8c0 15.8 4.5 29.3 13.4 40.4a40.2 40.2 0 0032.3 16.7H338c12.6 0 23.4-5.7 32.3-17.2a64.8 64.8 0 0013.4-41V109.6h27.4c2.7 0 4.9-.8 6.6-2.5a8.9 8.9 0 002.6-6.6V82.2a9 9 0 00-2.6-6.5zm-248.4-36a8 8 0 014.9-3.2h90.5a8 8 0 014.8 3.2L283.2 73H155.3l14-33.4zm177.9 340.6a32.4 32.4 0 01-6.2 19.3c-1.4 1.6-2.4 2.4-3 2.4H100.5c-.6 0-1.6-.8-3-2.4a32.5 32.5 0 01-6.1-19.3V109.6h255.8v270.7z'/%3e%3cpath d='M137 347.2h18.3c2.7 0 4.9-.9 6.6-2.6a9 9 0 002.5-6.6V173.6a9 9 0 00-2.5-6.6 8.9 8.9 0 00-6.6-2.6H137c-2.6 0-4.8.9-6.5 2.6a8.9 8.9 0 00-2.6 6.6V338c0 2.7.9 4.9 2.6 6.6a8.9 8.9 0 006.5 2.6zM210.1 347.2h18.3a8.9 8.9 0 009.1-9.1V173.5c0-2.7-.8-4.9-2.5-6.6a8.9 8.9 0 00-6.6-2.6h-18.3a8.9 8.9 0 00-9.1 9.1V338a8.9 8.9 0 009.1 9.1zM283.2 347.2h18.3c2.7 0 4.8-.9 6.6-2.6a8.9 8.9 0 002.5-6.6V173.6c0-2.7-.8-4.9-2.5-6.6a8.9 8.9 0 00-6.6-2.6h-18.3a9 9 0 00-6.6 2.6 8.9 8.9 0 00-2.5 6.6V338a9 9 0 002.5 6.6 9 9 0 006.6 2.6z'/%3e%3c/svg%3e");
}

.file-input {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
}
.file-input:focus {
  outline: none;
}


.form-control.is-invalid, .was-validated .form-control:invalid {
    border-color: #dc3545;
    background-image: none;
}

.section-photo{
	/*border: 1px solid #CED4DA;*/
    background: #fff;
    display: flex;
    height: 100%;
    border-radius: 8px;
    padding: 16px;
	align-items:center;
  justify-content: center;
	gap: 16px;
	flex-wrap:wrap;
}

.section-photo.doc-brochure{
	justify-content: start;
}


.item-photo{
	position: relative;
    border-radius: 4px;
    overflow: hidden;
}

.item-photo.img-150{
	width:150px;
	height:150px;
}

.item-photo.img-100{
	width:100px;
	height:100px;
}

.item-photo.img-150 img{
	height:150px;
	object-fit:cover;
}

.item-photo.img-100 img{
	object-fit:cover;
	height:100px;
}

.item-photo .img-delete{
	position: absolute;
    right: 8px;
    background: #EA4444;
    top: 8px;
    width: 24px;
    color: #fff;
    font-weight: normal;
    height: 24px;
    text-align: center;
    line-height: 24px;
    border-radius: 4px;
	cursor:pointer;
}
.item-photo .img-delete:hover{
	
    background: #dc2525;
    
}


/*drag and drop*/

.box {
  position: absolute;
  
}


.drag-trigger {
      position: absolute;
    display: block;
    top: 36px;
    right: 8px;
   
    width: 24px;
    height: 24px;
	text-align:center;
	color:#fff;
    line-height: 24px;
    text-decoration: none;
    background:#2196F3;
    border-radius: 4px;
    z-index: 99;
}

.section-inner {
  position: relative;
  height:220px;
}

.caja-fotos{
	    border: 1px solid #CED4DA;
    background: #fff;
	    border-radius: 8px;
    padding: 16px;
    
}


/*agregar div*/

.dynamic-div, .dynamic-div-container1, .dynamic-div-container2{
	position: relative;
    /*margin-right: 40px;*/
}

.select2-container .select2-selection--single{
	position:relative;
}

span.delete-btn{
  position: absolute;
  right: -40px;
  /* top: 8px; */
  font-size: 20px;
  /* color: red; */
  background: #FFF5F5;
  color: #F82424;
  width: 38px;
  text-align: center;
  height: 38px;
  border-radius: 4px;
  border: 1px solid #F82424;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

span.delete-btn:hover{
	background: #F82424;
	color: #fff;
}

.btn-second{
	background-color: rgb(255 193 7 / 10%);
    border: 2px solid #febf00;
    border-radius: 50px;
    color: #010E34;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 35px 8px;
    text-align: center;
    line-height: 16px;
    height: 38px;
}

.btn-second:hover{
	background-color: #febf00;
    border: 2px solid #febf00;
	color:#fff;
}

.manual-activar{
	background: #F4F7F7;
    padding: 4px 8px;
    border: 1px solid #d1d1d1;
	margin:8px 0px;
	border-radius:4px;
	display: inline-block;
	cursor:pointer;
}

.dynamic-div-container2 .delete-btn{
	position:relative;
    right: auto !important;
    top: auto !important;
    font-size: 24px;
    /* color: red; */
    background: #FFF5F5;
    display: inline-block;
    color: #F82424;
    width: 40px;
    text-align: center;
    height: 40px;
    border-radius: 4px;
    border: 1px solid #F82424;
}

.check-atencion{
	display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
	gap:12px;
	margin-bottom:12px;
}

.dynamic-div-container3{
	position: relative;
    display: flex;
	gap:12px;
}

.dynamic-div-container3 .delete-btn{
	position:relative;
	right:auto !important;
}

.hora-de, .hora-hasta{
	width:180px;
	max-width:180px;
}

.block-copiar-horario{
	background: #fff;
    padding: 16px;
    border: 1px solid #d1d1d1;
	margin-top:12px;
}

#additionalInfo{
	padding: 12px;
    border-top: 1px solid rgb(204, 204, 204);
}

.tabs-horarios .tab-pane{
	padding:16px;
}

.list-dias{
	font-weight:600;
	color:#010E34;
}

.list-dias .nav-link{
	color:#010E34;
	border-bottom:1px solid #ccc;
}

.list-dias .nav-link:hover{
	border-color:#fff;
	border-bottom:1px solid #ccc;
}

.list-dias .nav-link.active{
	/*border:none;*/
	border-color:#fff;
	border-bottom:1px solid #FEAD00;
	color:#FEAD00;
}



/*darg new*/

.grid {
  position: relative;
}
.item {
  position: absolute;
  width: 100px;
  /*height: 130px;*/
  
  margin: 5px;
  z-index: 1;
  margin-bottom:24px;
  margin-top:8px;
}
.item.muuri-item-hidden {
  z-index: 0;
}
.item.muuri-item-releasing {
  z-index: 2;
}
.item.muuri-item-dragging {
  z-index: 3;
}
.item-content {
  position: relative;
    /* font-family: sans-serif; */
    width: 100%;
    height: 100%;
    text-align: center;
    /* border: 1px solid #F44336; */
    /* border-radius: 3px; */
    /* font-size: 25px; */
    /* color: #F44336; */
    cursor: pointer;
}

.item-content .img-delete, .item-content .img-ver{
	width:24px;
	height:24px;
	line-height:24px;
}

.item-content .img-delete{
	position: absolute;
    left: 0px;
	color:#EA4444;
}

.item-content .img-ver{
	position: absolute;
    right: 0px;
	color:#673AB7;
}

.item-content .img-ver img{
	position: absolute;
    left: 0px;
    object-fit: cover;
    height: 24px;
	opacity:0;
}

.item.muuri-item-dragging .item-content,
.item.muuri-item-releasing .item-content {
  background: #FFCDD2;
}

.block-direcciones{
	height: 100%;
    background: #F5F5F5;
    padding: 16px;
	border-radius:8px;
}


@media only screen and (max-width: 767px){
	.dynamic-div-container1{
		margin-right: 52px;
	}
	
	span.delete-btn{
		top:2px;
	}
	
	.nav-anclas ul{
		display: flex;
    
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
	}
	
	.btn-second{
		height:auto;
		font-size:14px;
	}

	
}

.docs img{
	border:1px solid #ccc;
	    border-radius: 4px;
}


/*display: flex;
    width: 380px;
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;*/


/*modal

.modal-img .modal-content{
	background:none;
	border:none;
}

.modal-img .modal-header{
	border:none;
}

.modal-img .modal-header .btn-close{
	background-color:#fff;
	
}

.modal-img .modal-body{
	padding:0px;
}


.carousel-item img{
	position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
}

 */

#editor {
	resize: vertical;
	overflow: auto;
	line-height: 1.5;
	background-color: #fff;
  background-image: none;
	border: 0;
  color:#010E34;
  border-bottom: 1px solid #3b8dbd;
	min-height: 150px;
	box-shadow: none;
	padding: 8px 16px;
	margin: 0 auto;
	font-size: 14px;
  resize: none;
	transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
}

#editor span{
	/*background:transparent !important;*/
}

	#editor:focus {
	
		border-color: #38af5b;
		box-shadow: none;
		outline: 0 none;
	}

  #editor ul{
    margin-left: 30px;
  }

  #editor ul li{
    list-style: disc;
  }


  #editControls{
    display: flex;
    flex-wrap: wrap;
  }

 #editControls div:nth-child(1),#editControls div:nth-child(4){
    display: none !important;
  }

  #editControls .btn-default[title="Strikethrough"]{
    display: none !important;
  }

  #editControls .btn-default[title="Blockquote"]{
    display: none !important;
  }

  #editorCopy{
    
  }
  
  /*dropdown*/
  
  .avatar{
	  display:flex;
	  gap:8px;
  }
  
  .avatar span:nth-child(2){
	  line-height:40px;
  }
  
  .user-options{
	      display: inline-block;
    margin-right: 20px;
    padding: 8px 0px;
  }
  
  .user-options:hover{
	  color:#fff;
  }
  
  .user-options .dropdown-menu.show{
	    inset: inherit !important;
    transform: none !important;
    margin-top: 8px !important;
    margin-left: 20px !important;
	position: absolute !important;
    right: 0 !important;
    z-index: 10 !important;
  }    
  
  .user-options .nav-link{
	  display: flex;
    align-items: center;
    justify-content: center;
	gap:8px;
  }
  
  
  .user-options .foto-user{
	  width: 40px;
    height: 40px;
    display: inline-block;
    border-radius: 50px;
    background: #000;
	overflow:hidden;
  }

  .user-options .foto-user img{
    object-fit: cover;
    height: 40px;
  }
  
  .dropend .dropdown-toggle {
  color: salmon;
  margin-left: 1em;
}
.dropdown-item:hover {
  background-color:#FEAD00;
  color: #fff;
}
.dropdown .dropdown-menu {
  display: none;
}
.dropdown:hover > .dropdown-menu,
.dropend:hover > .dropdown-menu {
  display: block;
    margin-top: 8px;
    margin-left: 20px;
    position: absolute;
    right: 0;
    z-index: 10;
}
@media screen and (min-width: 769px) {
  .dropend:hover > .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
  }
  .dropend .dropdown-toggle {
    margin-left: 0.5em;
  }
  
  
  
}

/**/
@media only screen and (max-width: 991px) {
		.header-action-area .btn-theme{
			display:none;
		}

    .header-action-area .btn-ingresar{
			display:inline-block;
		}
		
		
}

.link-avatar .mobile-menu-expand{
	top:20px !important;
}

.link-user{
	display: flex !important;
    align-items: center;
	gap:8px;
}

.link-user .foto-user{
	width:36px;
	height:36px;
	display:inline-block;
	 border-radius: 50px;
    background: #000;
	overflow:hidden;
}



 #map {
            height: 250px;
            width: 100%;
        }
        #pac-input {
            
        }
		
.conten-list-map{
	margin-bottom:12px;
}

.job-details-share{
	display: flex;
    flex-direction: column;
    align-items: end;
	gap:8px;
}

.b-star{
	display:flex;
	gap:2px;
}

.b-star i.active{
	color:#FEAD00;
}

@media only screen and (max-width: 1400px) {
  .job-details-share .b-share{
	  display:flex;
	  gap: 4px;
  }
  
  .job-details-share .b-share span{
	  display:none;
  }
  
  .job-details-share .b-share .btn-theme{
	 width:45px;
  }
  
  .job-details-share .b-rrss{
	 display: inline-flex;
	 flex-wrap: wrap;
	 justify-content: flex-end;
	 gap: 4px;
  }
  
}


@media only screen and (max-width: 1199px) {
  .job-details-info .content .info-list{
	  flex-direction:column;
	  gap:8px;
	  
  }
  
  .job-details-info .content .info-list li + li{
	  margin-left:0px;
  }
  
  .main-content.content-detalle{
	margin-top:71px !important;
}
  
}

@media only screen and (max-width: 470px) {
	.job-details-share{
		flex-direction:column !important;
		align-items: center;
	}
}

.detalle-horario strong{
	color:#010E34;
}

.job-details-item .content .widget-contact{
	padding:32px;
	background:#f4f7f7;
}

.job-details-item .content .widget-experiencia{
	padding:32px;
	background:#fff;
	border:1px solid #D9D9D9;
}

.star-select ul {
    display: flex;
    margin-bottom: 12px;
}

.star-select ul li i {
    cursor: pointer;
    color: #D9D9D9; /* Color por defecto */
}

.star-select ul li.selected i {
    color: #FEAD00; /* Color dorado cuando está seleccionada */
}

.widget-logeo a{
	color:#FEAD00;
	text-decoration:underline;
	font-size:20px;
}

.info-datalle ul{
	display:flex;
	flex-direction:column;
}

.info-datalle ul li strong{
	display:block;	
}	

.info-datalle.info-datalle ul li{
	padding:8px 0px;
	border-bottom:1px solid #E5E5E5;
}

.info-datalle.info-datalle ul li a{
	color:#121212;
}

.info-datalle.info-datalle ul li a:hover{
	color:#FEAD00;
}

.list-phone{
	display:flex;
	margin:8px 0px;
	gap:8px;
	flex-wrap:wrap;
}

.list-phone a{
	padding: 4px 16px;
	background:#E5E5E5;
	border:1px solid #D9D9D9;
	color:#010E34;
	font-weight:600;
	border-radius:50px;
}

.widget-map .ver-mapa{
	padding: 8px;
    text-align: center;
    background: #fff;
}

.widget-map .ver-mapa a{
	display: block;
    background: #fff;
    /*padding: 4px;*/
	color:#202020;
	
}

.widget-map .ver-mapa a:hover{
	color:#FEAD00;
}



.b-galeria{
	display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 10px;
}

.b-galeria div{
	padding-bottom: 75%;
    overflow: hidden;
    position: relative;
    background: #242429;
    border-radius: 5px;
	border:1px solid #ccc;
}

.b-galeria div i{
	width: 100%;
    position: absolute;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: .2s ease;
    overflow: hidden;
    opacity: 0
}

.b-galeria div img{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: .2s ease;
}

.b-galeria div:hover i {
    opacity: 1
}

.b-galeria div:hover img {
    opacity: .4;
    transform: scale(1.1)
}
/*
.modal-img .modal-header{
	position:absolute;
	top:-45px;
	right:0px;
}

*/

 .gallery img {
            width: 100%;
            height: auto;
            cursor: pointer;
            margin-bottom: 15px;
        }
        #GalleryModal .modal-body {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 80vh; /* Altura del modal para centrar verticalmente */
        }
        #GalleryModal .modal-body img {
            max-width: 100%;
            max-height: 80vh; /* Altura máxima para mantener la imagen dentro de la ventana */
            object-fit: contain; /* Mantiene la relación de aspecto sin recortar */
        }
        .carousel-inner {
            position: relative;
            height: 80vh; /* Ajusta la altura del contenedor del carousel */
        }
        .carousel-item {
            display: none; /* Esconde las imágenes por defecto */
            opacity: 0; /* Inicia con opacidad 0 */
            transition: opacity 0.0s ease-in-out; /* Suaviza la transición */
            height: 80vh; /* Ajusta la altura de cada item para centrarlas */
            display: flex; /* Flex para centrar el contenido */
            justify-content: center; /* Centra horizontalmente */
            align-items: center; /* Centra verticalmente */
        }
        .carousel-item.active {
            display: flex; /* Mantiene el flex para el elemento activo */
            opacity: 1; /* Opacidad total para el elemento activo */
        }
		

        #GalleryModal .modal-content{
	background:none;
	border:none;
}

#GalleryModal .modal-header{
	border:none;	
}

.main-content.content-detalle{
	margin-top:89px;
}

#GalleryModal .modal-header .btn-close{
	background-color:#fff;
}

.icofont-star {
    color: gray;
    cursor: pointer;
}

.icofont-star.selected {
    color: gold;
}

.job-sidebar{
	position:sticky;
	top:100px
}

.rubros-empresa .container{
	  padding-top: 160px;
        padding-bottom: 80px;
  }
  
  @media only screen and (max-width: 1199px) {
    .rubros-empresa .container {
        padding-top: 120px;
        padding-bottom: 40px;
    }
	
	.detalle-rubro{
	padding-bottom: 320px !important;
   
	
	}


  }
  
  .detalle-rubro{
   
	padding-bottom: 420px;
    overflow: hidden;
    position: relative;
    background: #242429;
    border-radius: 16px;
    border: 1px solid #ccc;
	cursor:pointer;
	display:block;
  width: 100%;
	margin-bottom:30px;
	
}
.detalle-rubro img{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    transition: .2s ease;
}

.detalle-rubro .nombre-rubro{
	position: absolute;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    bottom: 20px;
    line-height: 24px;
	color:#fff;
}

.detalle-rubro .nombre-rubro strong{
	font-size:16px;
}

.detalle-rubro .sombra{  
	position:absolute;
	content:"";
	background: linear-gradient(0deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.6587009803921569) 100%);
	width:100% !important;
	height:100%;
	z-index:1;
  left: 0px;
	transition: 0.5s;
}

.detalle-rubro:hover .sombra{
	transform: translateY(60%); /* Baja el fondo */
	background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

.b-plan{
	padding: 32px;
    border: 1px solid #D9D9D9;
    border-radius: 16px;
	margin-bottom:30px;
	transition:0.5s;
}

.b-plan:hover{
	box-shadow: 0px 0px 11px 3px rgba(102,102,102,0.2);
-webkit-box-shadow: 0px 0px 11px 3px rgba(102,102,102,0.2);
-moz-box-shadow: 0px 0px 11px 3px rgba(102,102,102,0.2);
}

.b-plan .plan-nombre{
	padding-bottom: 12px;
	border-bottom: 1px solid #ccc;
	margin-bottom: 16px;
}

.b-plan .plan-nombre h6{
	font-size: 20px;
}

.b-plan .plan-nombre strong{
	font-size: 40px;
    display: flex;
    align-items: center;
    gap: 4px;
	line-height: 36px;
}

.b-plan .plan-nombre strong span{
	display: inline-block;
    font-size: 16px;
    font-weight: normal;
}

.plan-detalle ul {
	margin-bottom:16px;
}

.plan-detalle ul li{
	display: block;
    line-height: 1.75;
    position: relative;
    padding-left: 30px;
	font-size:18px;
	color:#ccc;
}

.plan-detalle ul li i{
	margin-right: 12px;
    position: absolute;
    left: -2px;
    top: 6px;
    color: rgb(254 173 0 / 30%)/*#FEAD00*/;
}

.plan-detalle ul li.active i{
	color:#FEAD00;
}

.plan-detalle ul li.active {
	color:#121212;
}

/**/
.job-sidebar .widget-item .cta-user{
	display: flex;
    flex-direction: column;
    align-items: center;
}

.job-sidebar .widget-item .cta-user span{
	font-weight:600;
}

.job-sidebar .widget-item .cta-user figure{
	width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
}

.job-sidebar .widget-item .cta-user figure img{
	height:160px;
	object-fit:cover;
}

.job-sidebar .widget-item .widget-menu{
	margin-top:16px;
}

.job-sidebar .widget-item .widget-menu{
	margin-top:16px;
}

.job-sidebar .widget-item .widget-menu ul li a{
	padding: 8px 16px;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 16px;
    color: #010E34;
    font-weight: 500;
	border-radius:8px;
	margin-bottom:8px;
}

.job-sidebar .widget-item .widget-menu ul li a:hover{
	color: #010e34;
    background: #febf00;
    border: none;
}
.job-sidebar .widget-item .widget-menu ul li a.active{
	color: #010e34;
    background: #febf00;
    border: none;
}

.tab-cuenta .b-img{
	display:flex;
	align-items:center;
	gap:20px;
}

.job-details-item .content h3{
	font-size:28px;
	margin-bottom:20px;
}


.tab-cuenta .b-img figure{
	width:100px;
	height:100px;
	overflow:hidden;	
	border-radius:50%;
	margin-bottom:0px;
}

.b-modificar-foto{
  flex: 1;
}

.tab-cuenta .b-img .b-modificar-foto span{
	display:block;
  line-height: 20px;
}



.tab-cuenta .b-img figure img{
	height:100px;
	object-fit:cover;
}

.tab-cuenta .b-detalle-cuenta{
	margin-top:12px;
}

.text-right{
	text-align:right;
}


.nav-empresa li a {
    display: flex;              /* Flex en el enlace para distribuir los hijos */
    justify-content: space-between; /* Distribuye el contenido interno */
	flex-direction:column;
    
    text-decoration: none;      /* Elimina el subrayado de los enlaces */
    color: inherit;             /* Mantiene el color del texto */
	padding:12px 16px;
	border:1px solid #ccc;
	border-radius:8px;
}


.nav-empresa .nav-link{
	border:1px solid #dee2e6;
}


.nav-empresa li a div {
    text-align: left;
    display: flex;
    justify-content: space-between;

}

.nav-empresa li a div i {
    font-size: 24px;            /* Ajusta el tamaño del ícono */
}

.nav-empresa{
	gap:12px;
	border:none;
}

.nav-empresa .nav-link.active{
	border:1px solid #dee2e6;
  background: #fffbf3;
}

.nav-empresa li{
	flex:1;
}

/*PANEL EMPRESA*/

.info-empresa{
	padding:16px;
	border:1px solid #ccc;
	border-radius:8px;
	margin-bottom:32px;
	background:#f9f9f9;
	transition:0.3s;
}

.info-empresa:hover{
	background:#fff;
	border:1px solid #febf00;
}

.body-empresa{
	padding:12px 0px;
	display:flex;
	gap:12px;
	justify-content: space-between;
}


.body-empresa span{
	line-height:20px;
}

.footer-empresa{
	border-top:1px solid #ccc;
	margin-top:8px;
	padding-top:8px;
}

.footer-empresa ul{
	display:flex;
	justify-content:space-between;
	margin-bottom:0px;
}

.footer-empresa ul a{
	color:#010E34;
}

.footer-empresa ul a i{
  margin-right: 4px;
}


.info-empresa .header-empresa{
	display: flex;
}

.info-empresa .header-empresa .foto-info{
	flex:1;
	display: flex;
	align-items:center;
	gap:12px;
}

.info-empresa .header-empresa  ul{
	display:flex;
	margin-bottom:10px;
}

.info-empresa .header-empresa  ul li{
	float:left;
}

.info-empresa .header-empresa  ul a{
	padding: 8px;
    display: flex;
    width: 32px;
    height: 32px;
    /* text-align: center; */
    align-items: center;
    justify-content: center;
	color:#010E34;
	margin: 0px 4px;
}

.info-empresa .header-empresa  ul a:hover, .footer-empresa ul a:hover{
	color:#febf00;
}



.info-empresa .header-empresa  ul a i{
	font-size:24px;
}

.info-empresa .header-empresa .foto-info figure{
	width:80px;
	height:80px;
	display: inline-block;
	margin-bottom:0px;
	border-radius:50%;
	overflow:hidden;
}

.info-empresa .header-empresa .foto-info div{
	display: inline-block;
	flex:1;
}

.info-empresa .header-empresa .foto-info div a{
	display: block;
}

.info-empresa .header-empresa .foto-info div a:hover{
	display: block;
	color:#febf00;
}

.info-empresa .header-empresa .foto-info figure img{
	object-fit:cover;
	height:80px;
}

@media only screen and (max-width: 1199px) {
	.info-empresa .header-empresa{
		flex-direction:column;
	}
}

@media only screen and (max-width: 991px) {
	.info-empresa .header-empresa{
		flex-direction:row;
	}
}

.breadcrumb-item a{
	font-weight:600;
	color:#010E34;
	text-decoration:underline;
}

.breadcrumb-item a:hover{
	color:#FEAD00;
}

.nav-empresa .nav-link.active{
	    border: 1px solid #FEAD00;
}

.nav-empresa .nav-link.active div i{
	color:#FEAD00;
}

.info-estadist{
	padding: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-bottom: 10px;
}

.info-estadist ul{
	display:flex;
	justify-content:space-between;
	margin-bottom:0px;
	margin-top:12px;
}

.info-estadist ul li{
	display:flex;
	flex-direction:column;
	justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 20px;
    gap: 8px;
}

.social-media-row{
  position:relative;
}

.horario span.delete-btn{
  position: relative;
  right: 0px;
  margin-top: 26px;
}

.link-adic{
  position: absolute;
  right: 0;
  font-size: 14px;
    bottom: 0px;
}

@media only screen and (max-width: 440px) {
  .info-empresa .header-empresa .foto-info figure{
	  display:none;
  }
}


@media only screen and (max-width: 991px) {
  .widget-menu ul {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .widget-menu ul li {
    flex: 0 0 auto;
    margin-right: 15px;
  }
  
  .provee-destac-item{
	  height:290px;
  }

}

.pulse-button {
  position: fixed;
  bottom: 20px;
  right: 50px;
  z-index: 999;
  margin-left: -50px;
  margin-top: -50px;
  display: block;
  width: 60px;
  height: 60px;
  font-size: 30px;
  text-align: center;
  line-height:60px;
  letter-spacing: -1px;
  color: white;
  border: none;
  border-radius: 50%;
  background: #25D366;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(37,211,102, 0.5);
  -webkit-animation: pulse 1.5s infinite;
}

.txt-aviso{
  position: fixed;
  bottom: 6%;
  right: 120px;
  z-index: 999;
  display:block;
  background:#25D366;
  padding:10px 10px 10px 12px;
  border-radius:8px;
  color:#fff;
}

.txt-aviso i{
  font-size:20px;
}

.pulse-button:hover {
  -webkit-animation: none;
  color:#fff;
  background:#128C7E;
}

@-webkit-keyframes pulse {
  0% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  70% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: 0 0 0 20px rgba(37,211,102, 0);
  }
  100% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37,211,102, 0);
  }
}


.footer-empresa ul .aprobar-empresa{
  color: #d31313;
  cursor: pointer;
}

.footer-empresa ul .aprobar-empresa:hover{
  color:#ab0e0e;
}

.footer-empresa ul .aprobar-empresa.aprobado{
  color: #299603;
  cursor: default;
}

.icon-estadist{
  width: 34px;
    height: 34px;
    text-align: center;
    line-height: 34px;
    border-radius: 50px;
    background: #feed00;
}

.lista-empresa .row:nth-of-type(even) {
 
}


/**/
.icons a{
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  transition: all 0.3s ease-in-out;
} 

.icons{
  margin: 15px 0 20px 0;
  display: flex
;
    align-items: center;
    justify-content: start;
    gap:16px;
    flex-wrap: wrap;
}

.icons a{
  height: 50px;
  width: 50px;
  font-size: 20px;
  text-decoration: none;
  border: 1px solid transparent;
}
.icons a i{
  transition: transform 0.3s ease-in-out;
}
.icons a:nth-child(1){
  color: #1877F2;
  border-color: #b7d4fb;
}
.icons a:nth-child(1):hover{
  background: #1877F2;
}
.icons a:nth-child(2){
  color: #46C1F6;
  border-color: #b6e7fc;
}
.icons a:nth-child(2):hover{
  background: #46C1F6;
}
.icons a:nth-child(3){
  color: #e1306c;
  border-color: #f5bccf;
}
.icons a:nth-child(3):hover{
  background: #e1306c;
}
.icons a:nth-child(4){
  color: #25D366;
  border-color: #bef4d2;
}
.icons a:nth-child(4):hover{
  background: #25D366;
}
.icons a:nth-child(5){
  color: #0088cc;
  border-color: #b3e6ff;
}
.icons a:nth-child(5):hover{
  background: #0088cc;
}
.icons a:hover{
  color: #fff;
  border-color: transparent;
}
.icons a:hover i{
  transform: scale(1.2);
}


.bootstrap-tagsinput{
  min-height: 38px;
  display: block;
  padding: .375rem .75rem;
  max-height: 124px;
  overflow-x: scroll;
  overflow: hidden;
  overflow-y: scroll;
}

.bootstrap-tagsinput .tag{
  display: inline-block;
    vertical-align: middle;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 3.75px;
    margin-bottom: 3.75px;
    background-color: #2196f3;
    border: 1px solid #2196f3;
    color: #fff;
    word-break: break-all;
}

.table-responsive .b-img figure{
  border-radius: 0%;
}

.second-level{
  position: absolute;
    top: 0px;
    right: -124px;
    background: #fff;
    display: none;
    -webkit-box-shadow: 0 1px 24px 0 rgba(0, 0, 0, 0.09);
    box-shadow: 0 1px 24px 0 rgba(0, 0, 0, 0.09);
}

.second-level a{
  border-bottom: 1px solid rgba(173, 181, 189, 0.15);
}

.sub-mn:hover .second-level{
  display: block;
} 

.sub-mn:hover .second-level{
  
}

.grid-container {
      display: grid;
      gap: 10px;
      width: 100%;
      padding: 12px;
     
      grid-template-columns: 150px 3fr;
      border: 1px solid #e5e5e5;
      border-radius: 8px;
      margin-bottom: 20px;
      align-items: center;
      transition: all 0.3s ease-out;
      -webkit-transition: all 0.3s ease-out;
      -moz-transition: all 0.3s ease-out;
      -ms-transition: all 0.3s ease-out;
      -o-transition: all 0.3s ease-out;
}

.grid-container:hover{
    -webkit-box-shadow: 0px 15px 15px 0px rgba(114, 118, 116, 0.08);
    box-shadow: 0px 15px 15px 0px rgba(114, 118, 116, 0.08);
    border: 1px solid #FEAD00;
}

.big-box {
  
  padding: 10px;
  
  border-radius: 8px;
}

.small-box {
  /*background: #2ecc71;
  padding: 20px;
  border-radius: 8px;*/
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.small-box img{
  border-radius: 5px;
  height: 150px;
  width: 150px;
  object-fit: cover;
}

.big-box .job-details-item .job-details-list{
  
}

.sec-convenios .info-nombre-empresa{
  display: none;
}

/* Responsivo */
@media (max-width: 768px) {
  .grid-container, .grid-container.conten-serv{
      grid-template-columns: 1fr !important; /* Apila los divs en pantallas pequeñas */
  }

  .info-cta{
    display: none !important;
  }

  .sec-convenios .small-box{
      flex-direction: row;
      align-items: center;
  }

  .sec-convenios .info-nombre-empresa{
      display: block;
  }

  .info-nombre-desk{
    display: none;
  }

  .sec-convenios .big-box{
    display: flex;
        flex-direction: column;
        align-items: center;
  }

  .info-list-mobile{
  flex-direction: row !important;
  }

  .contact-convenio.list-rrss{
    flex-direction: column;
    gap: 12px;
    align-items: center !important;
  }

  .list-rrss .info-list-mobile{
    display: flex !important;
  }
  

}

.list-rrss .info-list-mobile{
  display: none;
}


/*comvenios*/

.convenio-info .info-list{
  /*flex-direction: column;*/
  gap: 12px;
}

.convenio-info .info-list li + li{
  margin-left: 0px;
}

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

.contact-convenio .info-list{
  flex-direction: column;
  margin: 0 auto;
  gap: 8px;
}

.contact-convenio .info-list li + li{
  margin-left: 0px;
}

.block-list-productos{
  min-height: 100px;
  height: 100px;
  overflow-y: scroll;
  overflow-x: hidden;
  margin-bottom: 16px;
  padding: 0px 5px;
  width: 100%;
}

.contact-convenio .info-list a{
  padding: 10px 10px;
}

.contact-convenio .info-list  .btn-theme{
  height: auto !important;
}

.contact-convenio .b-rrss a{
  height: 42px;
  font-size: 20px;
  width: 42px;
  line-height: 42px;
  border-radius: 50px !important;
}

.list-rrss{
  justify-content: end !important;
} 

@media only screen and (min-width: 991px) and (max-width: 1399px) {
  /*.contact-convenio {
    flex-direction: column;
    gap: 12px;
    align-items: start !important;
}*/
}


.block-list-productos::-webkit-scrollbar {
  width: 10px;
}

.block-list-productos::-webkit-scrollbar-track {
  background-color: #e4e4e4;
  border-radius: 100px;
}

.block-list-productos::-webkit-scrollbar-thumb {
  background-color: #FEAD00;
  border-radius: 100px;
}

.conten-serv .small-box img{
  border-radius: 5px;
  height: 310px;
  width: 310px;
  object-fit: cover;
}

.grid-container.conten-serv{
  grid-template-columns: 310px 3fr;
}

.tag-curso{
  padding: 4px 16px;
  border-radius: 4px;
  margin-bottom: 12px;
  display: inline-block;
}

.tag-curso.gratis{
  background: #0088cc;
  color: #fff;
}

.pointer {
  width: 112px;
  height: 32px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
}

.pointer:before {
  content: "";
  position: absolute;
  right: -20px;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 20px solid;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
}

/* Estilo para el primer div */
.pointer-purple {
  background: #feed00;
  color: #010E34;
}

.pointer-purple:before {
  border-left-color: #feed00;
}

/* Estilo para el segundo div */
.pointer-blue {
  background: #010e34;
}

.pointer-blue:before {
  border-left-color: #010e34;
}

.content-video{
  margin-bottom: 20px;
}

.contact-convenio.cta-cap .info-list{
  flex-direction: row;
  margin: 0px;
}

.b-embajadores .b-img figure{
  border-radius: 12px;
}

.mas-rrss {
  display: none; /* Ocultar por defecto */
}


/* Establecer un ancho fijo para la columna "Resumen" en pantallas grandes */
@media (min-width: 768px) { /* Ajusta este valor según tu diseño */
  .table.t-embajador td:nth-child(4), 
  .table.t-embajador th:nth-child(4) {
      width: 300px; /* Puedes ajustar el ancho según necesites */
      max-width: 300px;
      word-wrap: break-word; /* Evita que el texto desborde */
      overflow: hidden;
      text-overflow: ellipsis; /* Agrega "..." si el texto es muy largo */
      white-space: nowrap; /* Evita saltos de línea */
  }
}

/* En pantallas pequeñas, la columna se ajustará automáticamente */
@media (max-width: 767px) {
  .table.t-embajador td:nth-child(4), 
  .table.t-embajador th:nth-child(4) {
    width: 300px; /* Puedes ajustar el ancho según necesites */
    max-width: 300px;
    word-wrap: break-word; /* Evita que el texto desborde */
    overflow: hidden;
    text-overflow: ellipsis; /* Agrega "..." si el texto es muy largo */
    white-space: nowrap; /* Evita saltos de línea */
  }
}

.table-responsive{
  border-top:1px solid #e5e5e5;
  padding-top: 12px;
}

.descrip-capacit b{
  display: block;
}
.descrip-capacit span{
  font-weight: 400;
}


.bnt-subir-brochure, .tipo-costo, .b-video, .whatsapp-field, .b-img {
  display: none;
}

.b-icon-tag{
  
}

.b-icon-tag span{
  padding: 8px;
  background: #f9e197;
  display: block;
  line-height: 16px;
  border-radius: 6px;
  border: 1px solid #febf00;
}
/**/

/* Override bootstrap column paddings */

.tz-gallery {
  margin-top: 36px;
  padding: 40px;
  border-radius: 12px;
  background: #f4f7f7;
}

.tz-gallery .lightbox {
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.tz-gallery .lightbox img {
  width: 100%;
  border-radius: 0;
  position: relative;
}

.tz-gallery .lightbox:before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  opacity: 0;
  color: #fff;
  font-size: 26px;
  font-family: 'IcoFont' !important;
  content: '\ed11';
  pointer-events: none;
  z-index: 9000;
  transition: 0.4s;
}


.tz-gallery .lightbox:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgb(1 14 52 / 70%);
  content: '';
  transition: 0.4s;
}

.tz-gallery .lightbox:hover:after,
.tz-gallery .lightbox:hover:before {
  opacity: 1;
}

.baguetteBox-button {
  background-color: transparent !important;
}

#baguetteBox-overlay .full-image{
  padding: 0 60px;
}
