.medalha1 , .medalha2 , .medalha3 {
    width: 47px;
    height: 50px;
    background-image: url(../images/medalhas.png);
    background-repeat: no-repeat;
    background-position: left top;
}
.medalha2 {
    background-position: -47px top;
}
.medalha3 {
    background-position: -94px top;
}


.slidecontainer {
  width: 100%;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 25px;
    background: transparent;
    outline: none;
    opacity: 1;
    -webkit-transition: .2s;
    transition: opacity .2s;
    background-image: url(../images/barra_medida1.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    background: transparent;
    cursor: pointer;
    background-image: url(../images/marcador.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.slider::-moz-range-thumb {
  width: 25px;
  height: 25px;
  background: #04AA6D;
  cursor: pointer;
}

.circle-chart {
  text-align: center;
}
.circle-chart__label {
  display: block;
  -webkit-margin-before: 0.83em;
  -webkit-margin-after: 0.83em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  font-weight: bold;
}
.circle-chart__circle {
  animation: circle-chart-fill 2s reverse; /* 1 */ 
  transform: rotate(-90deg); /* 2, 3 */
  transform-origin: center; /* 4 */
}

.circle-chart__circle--negative {
  transform: rotate(-90deg) scale(1,-1); /* 1, 2, 3 */
}

.circle-chart__info {
  animation: circle-chart-appear 2s forwards;
  opacity: 0;
  transform: translateY(0.3em);
}

@keyframes circle-chart-fill {
  to { stroke-dasharray: 0 100; }
}

@keyframes circle-chart-appear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}







input[type=range] {
  box-sizing: border-box;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 1px;
  outline: none;
  background: transparent;
  /* Use a linear gradient to generate only the 2px height background */
  background-size: 100% 2px;
  pointer-events: none;
}
input[type=range]:active,
input[type=range]:focus {
  outline: none;
}
input[type=range]::-webkit-slider-thumb {
    height: 32px;
    width: 32px;
    position: relative;
    margin: 0px 0 0 0;
    /* Add some margin to ensure box shadow is shown */
    cursor: pointer;
    -webkit-appearance: none;
          appearance: none;
    pointer-events: all;
}
input[type=range]:nth-child(1)::-webkit-slider-thumb {
    background-image: url(../images/marcador1.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: 50px 0 0 0;
}
input[type=range]:nth-child(2)::-webkit-slider-thumb {
    background-image: url(../images/marcador.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}


input[type=range]::-webkit-slider-thumb::before {
  content: ' ';
  display: block;
  position: absolute;
  top: 3px;
  left: 100%;
  width: 100%;
  height: 2px;
}
.multi-range {
    position: relative;
    padding-top: 0px;
    left: 0;
    display: block;
    width: 100%;
    max-width: 300px;
    height: 80px;
    background-image: url(../images/barra_amarela.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.multi-range input[type=range] {
    left: 0;
    position: absolute;
}
.multi-range input[type=range]:nth-child(1)::-webkit-slider-thumb::before {
  background-color: red;
}
.multi-range input[type=range]:nth-child(2) {
  background: none;
}
.multi-range input[type=range]:nth-child(2)::-webkit-slider-thumb::before {
  background-color: transparent;
}



/* Accordion styles */
.tabs1 {
  border-radius: 8px;
  overflow: hidden;
}

.tab1 {
  width: 100%;
  color: white;
  overflow: hidden;
}
.tab-label {
  display: flex;
  justify-content: space-between;
  padding: 4px 14px;
  background: #ededed;
  font-weight: bold;
  cursor: pointer;
  color: #000;
  /* Icon */
}
.tab-label:hover {
  background: #eeb400;
}
.tab-label::after {
  content: "❯";
  width: 1em;
  height: 1em;
  text-align: center;
  transition: all 0.35s;
}
.tab-content {
  max-height: 0;
  padding: 0 1em;
  color: #2c3e50;
  background: white;
  transition: all 0.35s;
}


.tabs1 input {
  display: none;
}

.tabs1 input:checked + .tab-label {
  background: #eeb400;
}
.tabs1 input:checked + .tab-label::after {
  transform: rotate(90deg);
}
.tabs1 input:checked ~ .tab-content {
  max-height: 100vh;
  padding: 1em;
}


.ulmatriz {
    list-style-type: none;
}
.media-final {
    font-size: 14px;
}

.progress-pie-chart {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #E5E5E5;
  position: relative;
}
.progress-pie-chart.gt-50 {
  background-color: #eeb400;
}

.ppc-progress {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 100px);
  top: calc(50% - 100px);
  width: 200px;
  height: 200px;
  clip: rect(0, 200px, 200px, 100px);
}
.ppc-progress .ppc-progress-fill {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 100px);
  top: calc(50% - 100px);
  width: 200px;
  height: 200px;
  clip: rect(0, 100px, 200px, 0);
  background: #eeb400;
  transform: rotate(160deg);
}
.gt-50 .ppc-progress {
  clip: rect(0, 100px, 200px, 0);
}
.gt-50 .ppc-progress .ppc-progress-fill {
  clip: rect(0, 200px, 200px, 100px);
  background: #eeb400;
}

.ppc-percents {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: calc(50% - 173.9130434783px/2);
  top: calc(50% - 173.9130434783px/2);
  width: 173.9130434783px;
  height: 173.9130434783px;
  background: #fff;
  text-align: center;
  display: table;
}
.ppc-percents span {
  display: block;
  font-size: 2.6em;
  font-weight: bold;
  color: #eeb400;
}

.pcc-percents-wrapper {
  display: table-cell;
  vertical-align: middle;
}



.quadroescola {
    border: 1px solid #ededed;
    border-radius: 10px;
    box-shadow: 0px 2px 14px 0px rgba(0, 0, 0, 0.12);
}

.matriz {
    display:inline-block;
    *display:inline;
    border-right: 1px solid #ededed;
    padding: 0px;
    margin: 0;

}
.matriz p {
    background-color: #001b62;
    padding: 5px 10px;
    margin: 0;
    color: #fff;
}

.areascroll { 
    position: relative;
    padding: 0px;
    margin: 0;
}

.scroll { 
    margin: 0;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    white-space:nowrap;
} 

.areascroll ::-webkit-scrollbar-track {
    background-color: #fff;
    border-radius: 5px;
    cursor: pointer;
}
.areascroll ::-webkit-scrollbar {
    width: 6px;
    height: 12px;
    background: #F4F4F4;
    border-radius: 5px;
    cursor: pointer;
}
.areascroll ::-webkit-scrollbar-thumb {
    background: #dad7d7;
    border-radius: 5px;
    cursor: pointer;
}


.Skills {
    padding: 5px 0;
    box-shadow: -1px -1px 2px rgba(255, 255, 255, 0.25), inset 2px 2px 5px rgba(255, 255, 255, 0.15), 1px 10px 10px rgba(146, 146, 146, 0.14);
}
.container .Skills h3 {
    padding-top: 5px;
    font-size: 18px;
    font-weight: 400;
}
.starRatingContainer div , .starRatingContainer {
    cursor: pointer;
}
.tittopico {
    background-color: #f0f0f0;
    padding: 10px;
}


.btn-tertiary {
  color: #555;
  padding: 0;
  line-height: 40px;
  width: 350px;
  margin: auto;
  display: block;
  border: 2px solid #555;
}
.btn-tertiary:hover, .btn-tertiary:focus {
  color: #888888;
  border-color: #888888;
}

/* input file style */
.input-file {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
.input-file + .js-labelFile {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0 10px;
  cursor: pointer;
}
.input-file + .js-labelFile .icon:before {
  content: "";
}
.input-file + .js-labelFile.has-file .icon:before {
  content: "";
  color: #5AAC7B;
}





.corazul {
    color: #001b62 !important;
}

.avatar-upload {
  position: relative;
  max-width: 205px;
  margin: 50px auto;
}
.avatar-upload .avatar-edit {
  position: absolute;
  right: 12px;
  z-index: 1;
  top: 10px;
}
.avatar-upload .avatar-edit input {
  display: none;
}
.avatar-upload .avatar-edit input + label {
  display: inline-block;
  width: 34px;
  height: 34px;
  padding: 6px;
  margin-bottom: 0;
  border-radius: 100%;
  background: #FFFFFF;
  border: 1px solid transparent;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  font-weight: normal;
  transition: all 0.2s ease-in-out;
}
.avatar-upload .avatar-edit input + label:hover {
  background: #f1f1f1;
  border-color: #d6d6d6;
}
.avatar-upload .avatar-edit input + label:after {
  color: #757575;
  position: absolute;
  top: 10px;
  left: 0;
  right: 0;
  text-align: center;
  margin: auto;
}
.avatar-upload .avatar-preview {
  width: 192px;
  height: 192px;
  position: relative;
  border-radius: 100%;
  border: 6px solid #F8F8F8;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}
.avatar-upload .avatar-preview > div {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}



.wizard .nav-tabs {
    position: relative;
    margin-bottom: 0;
    border-bottom-color: transparent;
}

.wizard > div.wizard-inner {
    position: relative;
    margin-bottom: 50px;
    text-align: center;
}

.connecting-line {
    height: 2px;
    background: #e0e0e0;
    position: absolute;
    width: 75%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 15px;
    z-index: 1;
}

.wizard .nav-tabs > li.active > a, .wizard .nav-tabs > li.active > a:hover, .wizard .nav-tabs > li.active > a:focus {
    color: #555555;
    cursor: default;
    border: 0;
    border-bottom-color: transparent;
}

span.round-tab {
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    z-index: 2;
    position: absolute;
    left: 0;
    text-align: center;
    font-size: 16px;
    color: #0e214b;
    font-weight: 500;
    border: 1px solid #ddd;
}
span.round-tab i{
    color:#555555;
}
.wizard li.active span.round-tab {
    background: #001b62;
    color: #fff;
    border-color: #001b62;
}
.wizard li.active span.round-tab i{
    color: #5bc0de;
}
.wizard .nav-tabs > li.active > a i{
    color: #001b62;
}

.wizard .nav-tabs > li {
    width: 25%;
}



.wizard .nav-tabs > li a {
    width: 30px;
    height: 30px;
    margin: 20px auto;
    border-radius: 100%;
    padding: 0;
    background-color: transparent;
    position: relative;
    top: 0;
}
.wizard .nav-tabs > li a i{
    margin-left: 12px;
    position: absolute;
    top: -15px;
    font-style: normal;
    font-weight: 400;
    white-space: nowrap;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: 700;
    color: #000;
}

    .wizard .nav-tabs > li a:hover {
        background: transparent;
    }

.wizard .tab-pane {
    position: relative;
    padding-top: 20px;
}


.wizard h3 {
    margin-top: 0;
}
.prev-step,
.next-step{
    font-size: 13px;
    padding: 8px 24px;
    border: none;
    border-radius: 4px;
    margin-top: 30px;
}
.next-step{
    background-color: #001b62;
    color: #fff;
}
.skip-btn{
    background-color: #cec12d;
}
.step-head{
    font-size: 20px;
    text-align: center;
    font-weight: 500;
    margin-bottom: 20px;
}
.term-check{
    font-size: 14px;
    font-weight: 400;
}
.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 40px;
    margin-bottom: 0;
}
.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 40px;
    margin: 0;
    opacity: 0;
}
.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: 40px;
    padding: .375rem .75rem;
    font-weight: 400;
    line-height: 2;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem;
}
.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: 38px;
    padding: .375rem .75rem;
    line-height: 2;
    color: #495057;
    content: "Browse";
    background-color: #e9ecef;
    border-left: inherit;
    border-radius: 0 .25rem .25rem 0;
}
.footer-link{
    margin-top: 30px;
}
.all-info-container{

}
.list-content{
    margin-bottom: 10px;
}
.list-content a{
    padding: 10px 15px;
    width: 100%;
    display: inline-block;
    background-color: #f5f5f5;
    position: relative;
    color: #565656;
    font-weight: 400;
    border-radius: 4px;
}
.list-content a[aria-expanded="true"] i{
    transform: rotate(180deg);
}
.list-content a i{
    text-align: right;
    position: absolute;
    top: 15px;
    right: 10px;
    transition: 0.5s;
}
.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control , select.form-control {
    background-color: #fff !important;
}
.list-box{
    padding: 10px;
}
.signup-logo-header .logo_area{
    width: 200px;
}
.signup-logo-header .nav > li{
    padding: 0;
}
.signup-logo-header .header-flex{
    display: flex;
    justify-content: center;
    align-items: center;
}
.list-inline li{
    display: inline-block;
}
.pull-right{
    float: right;
}

@media (max-width: 767px){
    .sign-content h3{
        font-size: 40px;
    }
    .wizard .nav-tabs > li a i{
        display: none;
    }
    .signup-logo-header .navbar-toggle{
        margin: 0;
        margin-top: 8px;
    }
    .signup-logo-header .logo_area{
        margin-top: 0;
    }
    .signup-logo-header .header-flex{
        display: block;
    }
}






/* CARDS */
.card_filho {
  background-color:white;
  box-shadow: 1px 2px 15px #ccc;
  border: 1px solid #f2f2f2;
  border-radius:.5rem;
  transform:scale(1);
  transition:.2s;
}

.card_filho:hover {
    transform:scale(1.02);
    box-shadow: 2px 15px 15px #ccc;
}

.large-avatar {
    position: relative;
    width: 110px;
}

.card__body {
  padding:1rem;
  display:flex;
  flex-direction:column;
  align-items:center;
  position:relative;
}

.card__footer {
    border-top: 1px solid #ccc;
    padding:1rem;
    display: block;
    align-items:center;
    color: #fff;
    flex-direction:column;
    background-color: #218719;
    border-color: #218719;
}
.card__footer:hover {
    background-color: #198754;
    border-color: #198754;
    text-decoration: none;
    color: #fff;
}



.tab-group {
    width: 100%;
    list-style:none;
    padding:0;
    margin:0 0 40px 0;
}
.tab-group  li a {
    float:left;
    width:50%;
    display:block;
    text-decoration:none;
    padding:15px;
    background: #eeb400;
    color: #fff;
    font-size: 17px;
    text-align:center;
    cursor:pointer;
    transition:.5s ease;
    border-radius: 0px 10px 10px 0px;
    &:hover {
      background: #181d38;
      color:$white;
    }
  }
.tab-group li.active a {
    border-radius: 10px 0px 0px 10px !important;
    background: #001b62 !important;
    color: #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}

.tab-content > div:last-child {
  display:none;
}


.frmSearch {
    border: 1px solid #a8d4b1;
    background-color: #c6f7d0;
    margin: 2px 0px;
    padding: 40px;
    border-radius: 4px;
}

#country-list {
    float: left;
    list-style: none;
    margin-top: -3px;
    padding: 0;
    width: 100%;
    position: absolute;
    z-index: 9999999 !important;
    max-height: 300px;
    overflow-y: scroll !important;
    border-radius: 0px 0 10px 10px;
    box-shadow: 2px 5px 5px #666;
}

#country-list li {
    padding: 10px;
    background: #fff;
    font-size: 14px;
    border-bottom: 1px solid #ededed;
}
.endbusca {
    font-size: 11px;
    display: block;
    width: 100%;
    padding: 2px 0 5px 0px;
    color: #eeb000;
}

#country-list li:hover {
    background: #ededed;
    cursor: pointer;
}

#search-box {
    padding: 10px;
    border: #a8d4b1 1px solid;
    border-radius: 4px;
}
#suggesstion-box , #suggesstion-box1 {
    display: none;
}


#bandeira {
  height: 50px;
  margin-top: 10px !important;
  border: 0px solid red !important;
}
#outrasbandeiras {
    margin: -17px 0 0 0 !important;
    border: 0px solid red !important;
    min-width: 72px !important;
    text-align: center;
    transition: transform .2s; /* Animation */
    border-radius: 0px 0 10px 10px;
    box-shadow: 2px 5px 5px #666;
}
#outrasbandeiras li a:hover  {
    background-color: transparent;
    transform: scale(1.2);
    transition: transform .2s; /* Animation */
}

.chosen-container-single .chosen-single , .chosen-single , .chosen-default {
    border: 1px solid #ccc   !important;
    border-radius: 0px !important;
    background-color: #fff !important;
    background: -webkit-gradient(linear, left top, right top, from(#FFF), to(#fff)) no-repeat !important;
    background: -moz-linear-gradient(left, #fff, #fff) !important;
}
.chosen-container{
    background-color: #fff !important;
}
.chosen-single {
    height: 58px !important;
}
.chosen-single span {
    padding-top: 20px !important;
    height: 53px !important;
    font-size: 15px !important;
}
.chosen-results {
    font-size: 15px !important;
}



/* ============================    carregando_dados   ================================  */
.carregando_dados , .carregando_dados_on {
  width: 100%;
  position: fixed;
  background-color: #000;
  opacity:0.8;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url(../images/loading51.gif);
  background-position: center;
  background-repeat: no-repeat;
  z-index: 99999;
}
.carregando_dados_on {
  background-image: none;
  z-index: 99;
}
.carregando_dados span { 
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  vertical-align: middle;
  color: #fff;
}



/********** Template CSS **********/
:root {
    --primary: #eeb400;
    --light: #F0FBFC;
    --dark: #181d38;
}

.fw-medium {
    font-weight: 600 !important;
}

.fw-semi-bold {
    font-weight: 700 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 0px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .dropdown-menu.fade-down {
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header carousel ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(24, 29, 56, .7), rgba(24, 29, 56, .7)), url(../img/carousel-1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.page-header-inner {
    background: rgba(15, 23, 43, .7);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
}

.section-title::before {
    position: absolute;
    content: "";
    width: calc(100% + 80px);
    height: 2px;
    top: 4px;
    left: -40px;
    background: var(--primary);
    z-index: -1;
}

.section-title::after {
    position: absolute;
    content: "";
    width: calc(100% + 120px);
    height: 2px;
    bottom: 5px;
    left: -60px;
    background: var(--primary);
    z-index: -1;
}

.section-title.text-start::before {
    width: calc(100% + 40px);
    left: 0;
}

.section-title.text-start::after {
    width: calc(100% + 60px);
    left: 0;
}


/*** Service ***/
.service-item {
    background: var(--light);
    transition: .5s;
}

.service-item:hover {
    margin-top: -10px;
    background: var(--primary);
}

.service-item * {
    transition: .5s;
}

.service-item:hover * {
    color: var(--light) !important;
}


/*** Categories & Courses ***/
.category img,
.course-item img {
    transition: .5s;
}

.category a:hover img,
.course-item:hover img {
    transform: scale(1.1);
}


/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text,
.testimonial-carousel .owl-item.center .testimonial-text * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-dots {
    margin-top: 24px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    z-index: 999;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    border: 1px solid #CCCCCC;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: normal;
    border: 1px solid #FFFFFF;
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}






#menudados {
    margin: 5px 0px 0 -50px !important;
    border: 0px solid red !important;
    padding: 20px 0;
    min-width: 190px;
    text-align: left;
    transition: transform .2s; /* Animation */
    border-radius: 0px 0 10px 10px;
    background-color: #1fc2d1;
}
#menudados li {
    padding: 5px 0;
    border-bottom: 1px solid #38c9d6;
}
#menudados li a i {
    font-size: 11px;
}

#menudados li a:hover  {
    color: #fff;
    background-color: #38c9d6;
}