@charset "UTF-8";
/*Google Fonts*/
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,wght@0,200;0,300;0,400;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,600;1,700;1,800;1,900&display=swap');
:root {
    --thm-font: 'Raleway', sans-serif;
    /* Headings */
    --thm-b-font: 'Nunito Sans', sans-serif;
    /* Body font */
    --thm-color-one: #1b2336;
    --thm-color-two: #4b83fb;
    --thm-color-three: #65cfa9;
    --thm-color-four: #ffbd3f;
    --thm-color-five: #0c1634;
    --thm-color-six: #ff0030;
    --thm-color-light: #dadada;
    /*RGB Colors*/
    --thm-color-one-rgb: 27, 35, 54;
    --thm-color-two-rgb: 75, 131, 251;
    --thm-color-three-rgb: 101, 207, 169;
    --thm-color-four-rgb: 255, 189, 63;
    --thm-color-six-rgb: 255, 0, 48;
    --thm-border-rgb: 241, 241, 241;
    /*Theme Colors*/
    --thm-body-color: #415674;
    /*Body Colors*/
    --thm-white: #ffffff;
    /*White Color*/
    --thm-border: #f1f1f1;
    /*Border Color*/
}

/*Animations*/
@keyframes fadeHeaderInDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes rotateme {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(1turn);
    }
}

@keyframes zoom-fade {
    0% {
        transform: scale(.9);
    }

    50% {
        transform: scale(1);
    }

    100% {
        transform: scale(.9);
    }
}

@keyframes slideRight {
    0% {
        opacity: 1;
        transform: translateX(2px);
    }

    20% {
        opacity: 1;
        transform: translateX(4px);
    }

    40% {
        opacity: 1;
        transform: translateX(6px);
    }

    60% {
        opacity: 1;
        transform: translateX(6px);
    }

    80% {
        opacity: 1;
        transform: translateX(4px);
    }

    100% {
        opacity: 1;
        transform: translateX(2px);
    }
}

@keyframes slideTop {
    0% {
        opacity: 1;
        transform: translateY(2px);
    }

    20% {
        opacity: 1;
        transform: translateY(4px);
    }

    40% {
        opacity: 1;
        transform: translateY(6px);
    }

    60% {
        opacity: 1;
        transform: translateY(6px);
    }

    80% {
        opacity: 1;
        transform: translateY(4px);
    }

    100% {
        opacity: 1;
        transform: translateY(2px);
    }
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.anti-ghost img{
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

.slideRight .arrow {
    animation: slideRight 1s linear infinite;
}

.slideRightTwo {
    animation: slideRight 1s linear infinite;
}

.slideTop .arrow {
    animation: slideTop 1s linear infinite;
}

.zoom-fade {
    animation-name: zoom-fade;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.rotate_elem {
    animation-name: rotateme;
    animation-duration: 24s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.arrows {
    display: flex;
    align-items: center;
}

.arrows .arrow {
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 18px solid var(--thm-white);
}

.arrows .arrow+.arrow {
    margin-left: 10px;
}

.arrows.to_up {
    display: inline-block;
}

.arrows.to_up .arrow {
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 18px solid var(--thm-color-three);
}

.arrows.to_up .arrow+.arrow {
    margin-left: 0;
    margin-top: 0px;
}

.pulse-animated {
    position: relative;
    z-index: 1;
}

.pulse-animated:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: rgb(var(--thm-color-three-rgb), 10%);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    z-index: -1;
}

/*General*/
::selection {
    background-color: var(--thm-color-two);
    color: var(--thm-white);
}

i[class^="flaticon-"],
i[class*=" flaticon-"] {
    display: flex;
    align-items: center;
    justify-content: center;
}




body.modal-open{
    overflow: hidden!important;
}

.relative {
    position: relative;
}

.thm-font {
    font-family: var(--thm-font);
}

.section {
    position: relative;
    padding: 120px 0;
}

.section-padding {
    position: relative;
    padding: 120px 0 90px;
}

.section_counter {
    counter-reset: count;
}

.image-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-fit-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.transform-center {
    position: absolute;
    top: 20%;
    left: 0;
    right: 0;
    z-index: 1;
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before {
    font-size: inherit;
    margin: 0;
}

ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

ul li {
    margin-bottom: 0;
    position: relative;
}

button:focus,
*:focus {
    outline: none;
}

button {
    background: transparent;
    border: none;
    padding: 0;
}

label {
    margin-bottom: 10px;
    font-weight: 500;
    line-height: normal;
}

img {
    max-width: 100%;
}

select {
    appearance: none;
}

.form-group {
    position: relative;
    margin-bottom: 30px;
}

.container-wide .row {
    flex-wrap: unset;
}

.z-1 {
    position: relative;
    z-index: 1;
}

.z-2 {
    position: relative;
    z-index: 2;
}


.section-bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}


/*section-title*/
.section-title {
   
    padding-bottom: 30px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 10;
}

.section-title .subtitle {
    font-size: 14px;
    color: var(--thm-color-two);
    font-weight: bold;
    margin-bottom: 10px;
    justify-content: center;
    text-transform: uppercase;
}

.section-title .subtitle i {
    margin-right: 10px;
    font-weight: 500;
}

.section-title .title {
    font-weight: 600;
    text-transform: capitalize;
}
.section-title .title span.vec-shape::before {
    content: '';
    position: absolute;
    background: url(../images/line_border.png) no-repeat;
    width: 366px;
    height: 99px;
    left: 117px;
    top: -10px;
    z-index: 99;
    background-size: 256px;

}


.section-title p {
    font-weight: 600;
}
.section-title.quest p {
        font-size: 1.1rem;
    font-weight: 400;
    line-height: 28px;
    font-family: "Manrope", sans-serif;
    color: #707070;
    padding-bottom: 0px;
    /* margin-bottom: 0; */
}
.section-title.quest {
    padding-bottom: 0px;
}
.section-title.left-align {
    text-align: left;
    margin: 0;
}

.section-title.left-align .subtitle {
    justify-content: flex-start;
}

.section-title.white .subtitle,
.section-title.white .title {
    color: var(--thm-white);
}

.bg-thm-color-one .section-title.white .subtitle {
    color: var(--thm-color-two);
}

.mx-width-100 {
    max-width: 100%;
}

.mx-width-50 {
    max-width: 50%;
}

/*video*/
.video_btn.video_text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.video_btn .video_icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--thm-white)
}

.video_btn.video_text span {
    font-size: 14px;
    font-weight: bold;
    color: var(--thm-color-one);
    text-transform: uppercase;
    margin-left: 15px;
}

/*style 2*/

.video_btn.style_2 .video_icon {
    width: 80px;
    height: 80px;
}

.video_btn.big .video_icon {
    width: 120px;
    height: 120px;
}

.video_btn.style_2.big .video_icon:after {
    width: 180px;
    height: 180px;
}

/*Slick Arrows*/
.slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--thm-color-two);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(var(--thm-color-two-rgb), 7%);
    z-index: 5;
    font-size: 0;
    border-radius: 6px;
    transition: 0.5s all;
}

.slick-arrow:before {
    content: "\f053";
    font-family: "Font Awesome 5 Pro";
    font-size: 12px;
    font-weight: 700;
    line-height: 2;
}

.slick-arrow.slick-next:before {
    content: "\f054";
}

.slick-arrow.slick-prev {
    right: auto;
    left: 0;
}

.slick-arrow.slick-next {
    left: auto;
    right: 0;
}

.slick-arrow:hover {
    background-color: var(--thm-color-two);
    box-shadow: 0px 5px 20px 0px rgb(var(--thm-color-two-rgb), 50%);
    color: var(--thm-white);
}

.arrows_none .slick-arrow {
    display: none !important;
}

/*Slick Dots*/
.slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slick-dots li {
    display: flex;
    margin: 0 3px;
}

.slick-dots li button {
    font-size: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid var(--thm-border);
    transition: 0.3s all;
    background-color: var(--thm-white);
}

.slick-dots li.slick-active button {
    background-color: var(--thm-color-three);
    border-color: var(--thm-color-three);
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
    font-family: var(--thm-font);
    color: var(--thm-color-one);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 30px;
}



a:hover,
a:focus {
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
a:hover,
a:focus {
    color: var(--thm-color-two);
    text-decoration: none;
}

/*Tables*/


table th,
table td {
    padding: 15px;
    vertical-align: middle;
    background-color: var(--thm-white);
}

table th {
    font-weight: 500;
    color: var(--thm-color-one);
    font-size: 16px;
    border: 1px solid var(--thm-border);
}

table {
    width: 100%;
}

table td {
    border: 1px solid var(--thm-border);
}

table img {
    width: 40px;
    border-radius: 0;
}

.mb-xl-20 {
    margin-bottom: 20px;
}

.mb-xl-30 {
    margin-bottom: 30px;
}

.mb-xl-60 {
    margin-bottom: 60px;
}


/*Buttons*/
.thm-btn {
    font-size: 14px;
    font-weight: bold;
    color: var(--thm-white);
    display: inline-flex;
    align-items: center;
    border: none;
    padding: 16px 42px;
    text-transform: uppercase;
    transition: 0.5s all;
}

.thm-btn i {
    font-size: 12px;
    font-weight: 600;
    line-height: 2;
}

.thm-btn.thm-color-one-shadow {
    box-shadow: 0px 5px 20px 0px rgb(var(--thm-color-one-rgb), 50%);
}

.thm-btn.thm-color-two-shadow {
    box-shadow: 0px 5px 20px 0px rgb(var(--thm-color-two-rgb), 50%);
}

.thm-btn.thm-color-three-shadow {
    box-shadow: 0px 5px 20px 0px rgb(var(--thm-color-three-rgb), 50%);
}

.thm-btn.thm-color-four-shadow {
    box-shadow: 0px 5px 20px 0px rgb(var(--thm-color-four-rgb), 50%);
}

.thm-btn.btn-rounded {
    border-radius: 50px;
}

.thm-btn.btn-rectangle {
    border-radius: 8px;
}

.thm-btn.btn-small {
    padding: 12px 21px;
}

.thm-btn.btn-rectangle.btn-small {
    border-radius: 6px;
}

.thm-btn.btn-border {
    border: 2px solid var(--thm-border);
}

.thm-btn.btn-circle {
    border-radius: 50%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thm-btn.bg-thm-color-one:hover,
.thm-btn.bg-thm-color-one:focus {
    color: var(--thm-white);
    background-color: var(--thm-color-two);
    box-shadow: none;
}

.bg-thm-color-two-light,
.thm-btn.bg-thm-color-two-light {
    background-color: rgb(var(--thm-color-two-rgb), 7%);
}

.thm-btn.bg-thm-color-two:hover,
.thm-btn.bg-thm-color-two:focus,
.thm-btn.bg-thm-color-three:hover,
.thm-btn.bg-thm-color-three:focus,
.thm-btn.bg-thm-color-four:hover,
.thm-btn.bg-thm-color-four:focus {
    color: var(--thm-white);
    background-color: var(--thm-color-one);
    box-shadow: none;
}

.thm-btn.bg-thm-color-two-light:hover,
.thm-btn.bg-thm-color-two-light:focus,
.thm-btn.bg-thm-color-white:hover,
.thm-btn.bg-thm-color-white:focus {
    background-color: var(--thm-color-two);
    box-shadow: 0px 5px 20px 0px rgb(var(--thm-color-two-rgb), 50%);
    color: var(--thm-white);
    border-color: var(--thm-color-two);
}

.fw-500{
    font-weight: 500;
}
.fw-600{
    font-weight: 600;
}
.thm-color-two {
    color: var(--thm-color-two);
}
.thm-color-three {
    color: var(--thm-color-three);
}
.bg-thm-color-two {
    background-color: var(--thm-color-two);
}

.bg-thm-color-three {
    background-color: var(--thm-color-three);
}


/*header*/
.header.home{
    background: transparent;
    padding-top: 40px;
    padding-bottom: 40px;
    box-shadow: none;
    -ms-box-shadow: none;
}
.header-absolute {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}
.header.can-sticky {
    position: fixed;
}
.header.sticky {
    background-color: var(--thm-white);
    box-shadow: 0 0 10px rgb(0 0 0 / 15%);
    animation-name: fadeHeaderInDown;
    animation-duration: 1s;
    animation-fill-mode: both;
    z-index: 100;
    padding-top: 20px;
    padding-bottom: 20px;
}

.header {
    background: #ffffff;
    padding-top: 31px;
    padding-bottom: 23px;
    box-shadow: 0px 2px 8px rgb(0 0 0 / 3%);
}

.header .nav_warp {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.header .nav_warp nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.header .nav_warp nav .logo {
    margin-right: 0px;
}

.header .nav_warp nav .logo img {
    max-width: 320px;
}

.header .nav_warp .main-menu {
    display: flex;
    flex-wrap: wrap;
}

.header .nav_warp .main-menu>.menu-item {
    margin: 0 5px;
}

.header .nav_warp .main-menu>.menu-item>a{
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--thm-color-one);
    padding: 12.5px 8px;
}
.header .nav_warp .main-menu>.menu-item>a:hover,
.menu-item a.active,
.menu-item.menu-item-has-children.active .sub-menu a.active {
    text-decoration: underline;
    color: #208da1!important;
}
.menu-item.menu-item-has-children a.active:hover,
.menu-item.menu-item-has-children.active .sub-menu a:hover{
    color:#ffffff!important;
}
.menu-item.menu-item-has-children.active a:not(.sub-menu a):nth-child(1){
    color: #208da1!important;
}

.header .head_actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header .head_actions .search_bar input {
    height: 50px;
    padding: 5px 30px;
    border-radius: 50px;
    border: none;
    background-color: rgba(var(--thm-color-two-rgb), 7%);
    max-width: 215px;
}

.header .head_actions .search_bar input,
.header .head_actions .search_bar input::placeholder {
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--thm-color-one);
}

.header .head_actions .search_bar input+i {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--thm-color-two);
    font-weight: 400;
    pointer-events: none;
}

.header .head_actions .head_trigger {
    width: 45px;
    height: 32px;
    margin-left: 30px;
    position: relative;
}

.header .head_actions .head_trigger span {
    width: 100%;
    height: 5px;
    background-color: var(--thm-color-one);
    display: block;
    margin-bottom: 8px;
    transition: 0.3s all;
    position: relative;
}

.header .head_actions .head_trigger span:nth-child(2) {
    width: calc(100% - 20%);
    left: 20%;
}

.header .head_actions .head_trigger:hover span:nth-child(2) {
    width: 100%;
    left: 0%;
}

.header .head_actions .head_trigger span:last-child {
    margin-bottom: 0;
}

.mobile_trigger {
    display: none;
}

.menu-item-has-children {
    position: relative;
}

.menu-item-has-children>a:after {
    display: inline-block;
    margin-left: .55em;
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
}

.menu-item-has-children>.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    box-shadow: 0px 10px 19px -5px rgb(0 0 0 / 12%);
    background: var(--thm-white);
    visibility: hidden;
    opacity: 0;
    transition: 0.3s all;
    width: 250px;
}

.menu-item-has-children:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    z-index: 999;
    transition: 0.3s all;
}

.menu-item-has-children>.sub-menu>li.menu-item>a {
    display: block;
    padding: 12px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.5s;
    white-space: nowrap;
    color: var(--thm-color-one);
}

.menu-item-has-children>.sub-menu>li.menu-item:hover>a {
    padding-left: 25px;
    transition: 0.5s;
    background-color: #208da1;
    color: var(--thm-white);
}

.menu-item-has-children>.sub-menu>li.menu-item-has-children>a:after {
    display: inline-block;
    margin-left: 0;
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    position: absolute;
    right: 12px;
    transform: rotate(-90deg);
}

.menu-item-has-children>.sub-menu>li.menu-item-has-children>.sub-menu {
    left: 100%;
    top: 0%;
}

.header .logoHash{
    display: none;
    text-align: center;
}
.logoHash img{
       max-width: 70px;
}
.logoHash span{
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
    color: #2f8ea5;
}
.header.can-sticky.hashpage .logoHash{
    display: block;
}
.header.can-sticky.hashpage{
    position: static;
    box-shadow: none;
    padding-bottom: 0;
}
.header.can-sticky.hashpage .nav_warp .main-menu{
    display: none;
}
.padraoModalAgenda .aulasAgendadas .aulaItem{
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    padding: 5px 14px;
    line-height: 15px;
    margin: 4px;
    border-radius: 30px;
    border: 2px solid #38b2b4;
    color: #38b2b4;
    display: flex;
    align-items: center;
}
.padraoModalAgenda .blocoAgenda.disabled{
    filter: grayscale(1);
    pointer-events: none;
}
.padraoModalAgenda .listHorarios::-webkit-scrollbar-track {
    background-color:  transparent;

  }

.padraoModalAgenda .listHorarios::-webkit-scrollbar {
    width: 5px;
    background: transparent;
  }

.padraoModalAgenda .listHorarios::-webkit-scrollbar-thumb {
    background:  #38b2b4;
    height: 5px!important;
        border-right: none;
    border-left: none;

  }
  .padraoModalAgenda .btn-agendar{
    float: right;
    display:none;
  }
.padraoModalAgenda .btn-agendar:before{
    content:"";
    width: 0;
    height: 0;
    clear: both;
}
.padraoModalAgenda .listHorarios{
    height: 265px;
    overflow-y: scroll;
    overflow-x: hidden;
}
.action-button[disabled]{
    filter: grayscale(1);
}
.aulaItem .action-button2{
    color:rgb(112, 112, 112);
}
.padraoModalAgenda .aulasAgendadas .infoText{
    font-size: 12px;
    line-height: normal;
    color: #38b2b4;
    font-weight: 700;
}
.padraoModalAgenda .modal-dialog {
    max-width: 50%;
    pointer-events: all;
}

.padraoModalAgenda .title p{
        margin: 0;
    font-weight: 700;
    color: #38b2b4;
}
.padraoModalAgenda .modal-content {
    border-radius: 14px;
    overflow: hidden;
}
.dadosInfoAluno .container{
    min-height: 265px;
}
.dadosInfoAluno ul{
    padding: 0;
    margin: 0;
    background: #fff1eb;
}
.dadosInfoAluno .form-control {
    height: 50px;
}
.dadosInfoAluno h4{
    font-size: 1.2rem;
    color: #266b96;
    margin: 7px 0px;
}
.dadosInfoAluno h5{
    font-size: 14px;
    margin-bottom: 6px;
}
.dadosInfoAluno ul li, .dadosInfoAluno ul li button{
    width: 100%;
}
.dadosInfoAluno .nav-link{
    height: 70px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 500;
    color: #38b2b4;
    font-weight: 600;
    pointer-events: none;
}
.dadosInfoAluno .nav-link.unlock{
    pointer-events: all;
}
.dadosInfoAluno .nav-link.active{
    background: #38b2b4;
    color: #ffffff;
}
#itensPaginaCarrinho .listProductToogler .produto{
    padding: 0;
}
.listProductToogler .produto .content-nav{
    pointer-events: none;
    height: 0;
    opacity: 0;
    transition: all 300ms ease-in-out;
    overflow: hidden;
}
.listProductToogler .active.produto .content-nav{
    height: auto;
    pointer-events: all;
    opacity: 1;
    padding: 5px 4px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
}
.dadosText .produto img{
        max-width: 60px;
        margin-right: 4px;
}
.dadosText .produto h6{
    margin: 0;
}
.dadosText .info p{
     margin: 0px 0px 5px 0px;
}
.dadosText .icon {
    max-width: 18px;
    line-height: 0;
    margin: 0px 2px 3px 14px;
}
.produto .expandir{
    background: url('../images/arrowToggler.png');
    background-size: 100% 100%;
    width: 20px;
    height: 20px;
    top: 30px;
    right: 15px;
    position: absolute;
    z-index: 9;
    transition: all 300ms ease-in-out;
}
.action-button2{

    margin: 0px 3px;
}

.produto.active .expandir{
    transform: rotate(180deg);
}
.itemAgendado{
    padding: 2px 5px;
    margin: 4px 0px;
}
.itemAgendado p{
    color: #1B212F;
    font-weight: 600;
    font-size: 13px;
}
p.destaque{
    color: #34a3ae;
    font-weight: 600;
}
.destaque::-webkit-input-placeholder { /* Edge */
      color: #495057;
    font-size: 1rem;
}

.destaque:-ms-input-placeholder { /* Internet Explorer 10-11 */
      color: #495057;
    font-size: 1rem;
}

.destaque::placeholder {
      color: #495057;
    font-size: 1rem;
}
.foto-sticker{
    position: sticky;
    top: 10rem;
}
#itensPaginaCarrinho .carrinho_categoria {
    bottom: -10px;
}
.carrinho_categoria{
    position: absolute;
    bottom: -1px;
    font-size: 0.6rem!important;
    color: #1bacaa;
    text-transform: uppercase;
    font-weight: 900!important;
}
.valores{
    position: relative;
}

.cadastro .valores input{
    text-indent: 40px;
}
.valores span{
    position: absolute;
    top: 12px;
    left: 10px;
    font-weight: bolder;
    color: #2b7e9e;
}
.bg-hash{
    position: relative;
    background: #ffffff;
    z-index: 2;
}
.bg-hash h3{
    color: #2f8ea5;
}

.mochila-itens .infos{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
}
.infos{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* flex-wrap: wrap-reverse; */
    justify-content: stretch;
    flex-wrap: wrap;
}
.oficina-img{
        border: 3px solid #2f8ea5;
    filter: drop-shadow(2px 4px 6px  rgb(0 0 0 / 10%));
    border-radius: 14px;
}
.f-position{
    float: right;
}
.bloco-titulos{
    position: relative;
    padding: 7px 7px 15px 12px;
    -webkit-box-shadow: 6px 8px 11px rgb(0 0 0 / 20%);
            box-shadow: 6px 8px 11px rgb(0 0 0 / 20%);
    border-radius: 8px;
}

.bloco-titulos:before{
     position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 12px;
    background: linear-gradient(45deg, #38b2b4, #266b96);
    content: "";
    width: 100%;
    height: 5px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
    -ms-box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
}
.bloco-descricao h2{
    color: #2e8ca4;
}

.interna-padrao .titulo h1{
        font-size: 2.54rem;
    margin: 0;
    line-height: normal;
}
.infos .icon{
    width: 28px;
    margin-right: 4px;
}

.info-prev p{
    position: relative;
    color: #1f95a3;
    margin-bottom: 15px;
    padding-left: 14px;
}

.info-prev p:before{
    position: absolute;
    left: 0;
    background: linear-gradient(45deg, #38b2b4, #266b96);
    content: "";
    width: 3px;
    height: 100%;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
    -ms-box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
}

.infos{

    margin-bottom: 21px;
}
.infos span{
    font-weight: 700;
    color: #1f95a3;
    background: white;
    padding: 8px 15px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
    border: 1px solid;
    border-radius: 9px;
    min-width: 150px;
    margin: 4px 2px;
    display: inline-block;
    text-align: center;

}
.action-button{
    width: auto;
    background: linear-gradient(45deg, #38b2b4, #266b96);
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 16px;
    margin: 10px 5px;
    border-radius: 9px;
    transition: all 0.2s ease-in-out;
}
.action-button:hover{
        box-shadow: 0px 5px 20px 0px rgb(var(--thm-color-two-rgb), 20%);
        transform: scale(1.05);
}
.marcador{
    position: relative;
    text-align: center;
}
.marcador:before{
    position: absolute;
    bottom: 0px;
    left: 0;
    right: 0;
    display: block;
    margin: 0 auto;
    content: "";
    width: 97%;
    height: 33px;
}

.marcador.pf:before{
    background: url("../images/marcador-bg-2.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.marcador.pj:before{
    background: url("../images/marcador-bg-1.png");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.item-block
{
    display: inline-flex;
}

/*linear-gradient(45deg, #38b2b4, #266b96)*/
.marcador span{
     position: relative;
    bottom: 30px;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    color: #208da1;
    text-transform: uppercase;
}
.padraoModal.formPadrao{
    position: fixed;
    text-align: left;
}
.padraoModal .modal-title{
    color: #38b2b4;
}
.padraoModal .modal-header{
    border-bottom: none;
}
.padraoModal h3{
    line-height: normal;
    text-align: start;
    margin: 0;
    font-size: 1.3rem;
    color: #29779b;
}

.padraoModal .info-item{
    margin-bottom: 14px;
    box-shadow: 0px 2px 8px rgb(0 0 0 / 12%);
    -ms-box-shadow: 0px 2px 8px rgb(0 0 0 / 12%);
    padding: 5px;
    border-radius: 5px;
}
.padraoModal label{
    text-align: left;
}
.padraoModal p{
    line-height: normal;
    text-align: start;
    font-weight: 600;
    margin: 0;
    text-indent: 10px;
}

.item-oficina{
    padding: 13px;
    border-bottom: 2px solid #35a5af;
    transition: all 200ms linear;
}
.selecionado.item-oficina img{
        border: 3px solid #1e9ba5;
    border-radius: 9px;
}
.item-oficina .produto{
    align-items: center;
}
.selecionado{
    box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
    border-radius: 4px;
}
.item-oficina p{
    font-size: 1.1rem;
    color: #218aa0;
    font-weight: 700;
        text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.formPadrao fieldset .form-card th{
    font-size: 0.9rem;
}
#itensPaginaCarrinho .produto .action-button{
    font-size: 0.7rem;
    width: auto;
    height: auto;
    padding: 7px 21px;
    min-width: 125px;
    margin: 5px auto;
}
#itensPaginaCarrinho .produto .item{
     display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
#itensPaginaCarrinho .produto{
    border-bottom: 1px solid #28749a;
    box-shadow: 6px 5px 15px rgb(0 0 0 / 20%);
    padding:14px 9px;
    border-radius: 4px;
    margin-bottom: 11px;
}



.bloco-hash{
    position: relative;  
}

.bloco-hash:before{
        position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 12px;
    background: linear-gradient(45deg, #38b2b4, #266b96);
    content: "";
    width: 100%;
    height: 5px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
    -ms-box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
}
.item-status{
    position: relative;
    padding: 7px;
}

/*Pendente*/
.status-1 span{
    font-weight: 900;
    color: #ffa500;
}

.status-1 .produto span{
    color: #1f95a3;
}

.status-1 .navegacao{
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
    pointer-events: none;
}

/*Aprovado/Concluido*/
.status-2 span{
    font-weight: 900;
    color: #47b308;
}

/*Cancelado/Devolvido*/
.status-3 span{
    font-weight: 900;
    color: #ff0000;
}
.item-status:before{
        position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 12px;
    background: linear-gradient(45deg, #38b2b4, #266b96);
    content: "";
    width: 100%;
    height: 5px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
    -ms-box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
    -webkit-animation: wd 0.9s linear both;
            animation: wd 0.9s linear both;
}
@-webkit-keyframes wd{
    0%{width: 0%;}
    100%{width: 100%;}
}
@keyframes wd{
    0%{width: 0%;}
    100%{width: 100%;}
}
.item-status h5{
    display: inline-block;
    color: #38b2b4;
    margin: 0;
}
.hash .fs-title{
        color: #34a3ae;
    text-align: center;
    text-transform: uppercase;
}
.hash .scroll{
    padding: 21px 8px 70px 8px;
    height: 414px;
    overflow-x: hidden;
}

 .hash  .scroll::-webkit-scrollbar-track {
    background-color: #91d3d2;
  }
   .hash  .scroll::-webkit-scrollbar {
    width: 6px;
    background: linear-gradient(45deg, #91d3d2, #266a95);
  }
   .hash  .scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, #91d3d2, #266a95);
  }

#itensPaginaCarrinho .produto h5,
#itensPaginaCarrinho .produto h6{
    margin: 0;
    line-height: normal;
    overflow: hidden;
    display: -webkit-box;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.hash #itensPaginaCarrinho .produto h5, .hash  #itensPaginaCarrinho .produto h6{
    font-size: 0.8rem;
}
.hash .infos span{
    font-size: 0.8rem;
}
.bloco-total{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    text-align: center;
    width: 100%;
}

.info-total{
    padding: 4px 13px 3px 11px;
    border: 1px solid #34a1ad;
    border-radius: 8px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
    display: inline-block;
}
.info-total img{
    max-width: 45px;
    margin: 0px 0px;
}
.info-total h5{
     margin: 0;
    color: #34a1ad;
    font-size: 1rem;
}
#itensPaginaCarrinho .produto .item img{
    display: inline-block;
    max-width: 20%;
    margin-right: 14px;
}
#itensPaginaCarrinho .produto .item h5{
    width: 70%;
}


.shake{
        -webkit-animation: shake-bottom 0.8s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
        animation: shake-bottom 0.8s cubic-bezier(0.455, 0.030, 0.515, 0.955) both;
}

@-webkit-keyframes shake-bottom {
  0%,
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }
  10% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  20%,
  40%,
  60% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  30%,
  50%,
  70% {
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
  }
  80% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  90% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
}
@keyframes shake-bottom {
  0%,
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transform-origin: 50% 100%;
            transform-origin: 50% 100%;
  }
  10% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
  20%,
  40%,
  60% {
    -webkit-transform: rotate(-4deg);
            transform: rotate(-4deg);
  }
  30%,
  50%,
  70% {
    -webkit-transform: rotate(4deg);
            transform: rotate(4deg);
  }
  80% {
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
  }
  90% {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
  }
}
.item-aula h4{
    margin: 0;
    text-align: center;
    font-size: 1rem;
    color: #fff;
}

.space-between{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.vazio{
    display: none;
}
.total h4{
    margin-bottom: 0px;
}
.conteudo-nav .finalizar{
    display: none;
}
.conteudo-nav .theme_btn{
    margin-top: 7px;
        padding: 8px 38px;
}
.carrinho-fixo .fechar{
    position: absolute;
    left: 24px;
    font-size: 1.6rem;
    top: 24px;
}

.icone-carrinho .icone{
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    margin: 0 auto;
}
.icone-carrinho .qtd{
    position: absolute;
    left: 0;
    top: 7px;
    right: 0;
    margin: 0 auto;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    color: #f14d5d;
}
.icone-carrinho{
    width: 45px;
    height: 45px;
    position: fixed;
    right: 15px;
    top:130px;
    font-size: 15px;
    border-radius: 50%;
    line-height: 45px;
    text-align: center;
    z-index: 99;
    filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.1));
}
.carrinho-fixo{
    height: 100vh;
    width: 500px;
    background: #fff;
    position: fixed;
    top: 0;
    right: 0;
    padding: 60px 21px 0px 21px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-transform: translatex(+120%);
    -ms-transform: translatex(+120%);
    transform: translatex(+120%);
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    transition: -webkit-transform 0.4s ease-in-out;
    -o-transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
    z-index: 2147483649;
    filter: drop-shadow(0px  0px 10px rgba(0,0,0,0.5));
}

.aberto.carrinho-fixo{
     -webkit-transform: translatex(0);
         -ms-transform: translatex(0);
             transform: translatex(0);
}

.carrinho-fixo .item{
    position: relative;
    margin-bottom: 6px;
    padding-top: 6px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
}
.carrinho-fixo .item img{
    max-width: 65px;
    border-radius: 4px;
    margin-right: 4px;
    display: inline-block;
}
.carrinho-fixo .item .produto span{
    width: 77%;
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: normal;
      overflow: hidden;
    display: -webkit-box;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.carrinho-fixo .item .produto{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.carrinho-fixo .item .info-preco{
    text-align: right;
    position: relative;
    width: 100%;
    padding: 4px 14px 7px 14px;
    border-top: 1px solid rgba(0,0,0,0.4);
    margin-top: 7px;
}
.vazio h5{
    margin-bottom: 0px;
    margin-top: 18px;
}
.carrinho-fixo .item .info-preco span{
    font-weight: 300;
    margin-right: 25px;
    font-size: 17px;
    text-decoration: underline;
    display: block;
    -webkit-transition: -webkit-transform 0.4s ease-in-out;
    transition: -webkit-transform 0.4s ease-in-out;
    -o-transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

.scroll-form::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.scroll-form{
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.carrinho-fixo .item .remover{
    position: absolute;
    bottom: 8px;
    font-size: 20px;
    right: 15px;
}
.scroll-form{
    height: 100vh;
    overflow: overlay;
    padding-bottom: 300px;
}
.conteudo-carrinho{
    overflow: hidden;
    max-height: 75vh;
}


    .mark, mark {
    padding: 0.2em;
    background-color: rgba(255, 114, 58, 0.1);
    color: #208da1;
    font-weight: bold;
}

.course-instructor .item{
    cursor: pointer;
     transition: all 0.7ms linear;
}
.course-instructor .item:hover{
    transform: scale(1.04);
}
.modal-backdrop{
    -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  background-color: rgb(206 206 207 / 12%);
  opacity: 1!important;
}

.padrao-modal .titulo figure{
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 0;
}

.padrao-modal .titulo figure img{
  max-width: 65px;
}
.quem-somos .vec-shape:before{
    content: '';
    position: absolute;
    background: url(../images/shape/line-border.svg) no-repeat;
    width: 374px;
    height: 104px;
    left: -115px;
    top: -13px;
    z-index: -1;
}
.quem-somos .t1{
    color: #22839e;
}
.quem-somos .t2{
    color: #22839e;
}
.quem-somos .chamada{
    color: #1da2a7;
    font-size: 2.7rem;
    text-align: center;
    font-weight: 700;
}
.fechar-modal, .padraoModalAgenda .fechar{
    border-radius: 3px;
    position: absolute;
    font-size: 2rem;
    color: #fff9f8;
    right: -51px;
    top: 0px;
    background: linear-gradient(45deg, #91d3d2, #266a95);
    box-shadow: 0px 2px 8px rgba(0,0,0,0.3);
    padding: 6px 12px;
    z-index: 99999;
}

.item-modal{
    display: none;
}

.item-modal.mostrar{
    display: flex;
}

.padrao-modal .modal-dialog{
    top: 10%;
     max-width: 100%;
    width: 80%;
}

.padrao-modal.modalservico h3{
        text-align: center;
    color: #21849d;
    font-size: 2rem;
}
.padrao-modal.modalservico .modal-dialog{
    max-width:65%;
}

.padrao-modal .add-mochila-1{
    width: 300px;
    text-align: center;
    display: block;
    padding: 10px;
    float: right;
}
.padrao-modal.modalservico .modal-content{
    background-color: #fff9f8;
}
.padrao-modal .modal-content{
        position: relative;
    border: none;
    padding: 25px 0px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
}
.modalservico .thumb{
    border: 4px solid #208da1;
    border-radius: 5px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.3);
}

.center-all{
    -webkit-box-pack:center;
    -ms-flex-pack:center;
        justify-content:center;
-webkit-box-align:center;
    -ms-flex-align:center;
        align-items:center;
}
.padrao-modal.modalservico h3{
    font-size: 2.1rem;
    padding: 0px 70px;
}

.padrao-modal p{
    line-height: 20px;
    margin-bottom: 20px;
}

.padrao-modal.modalservico p{
    line-height: 20px;
    margin-bottom: 20px;
    font-size: 1.3rem;
    line-height: normal;
}

main{
  position: relative;
  z-index: 9;
}

.final{
  text-align: center;
}
.final a{
    color: #22809c;
    font-size: 1.2rem;
    font-weight: 700;
}
.final img{
    display: block;
    margin: 0 auto;
    text-align: center;
    max-width: 105px;
}
.cadastro .formSteps.forms{
  margin-top: 20px;
}
.cadastro .formSteps.radios{
      border: 1px solid #1da8a9;
    padding: 17px 0px;
    border-radius: 4px;
}

.cadastro .formSteps.radios h3{
    font-size: 1.1rem;
    color: #1b879f;
    font-weight: 800;
}
.cadastro .formSteps select{
    padding: 0px 8px 4px 8px;
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 25px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    font-size: 16px;
    letter-spacing: 1px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
    font-weight: 400;
}
.cadastro .formSteps.forms label{
      font-size: 1.1rem;
    color: #1b879f;
    font-weight: 800;
}
/* HIDE RADIO */
.cadastro [type="checkbox"], .cadastro [type="radio"]  { 
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.cadastro .labels-img{
    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;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.cadastro .labels-img label.destaque{
  filter: initial;
}
.cadastro .labels-img label{
    color: #1995a4;
    font-weight: 900;
    font-size: 1.2rem;
    text-align: center;
    margin: 0px 20px 10px 20px;
    filter: grayscale(1);
}



/*Home/Gratuitas/Videos*/
.video_box {
    position: relative;
    z-index: 1;
    height: calc(100% - 30px);
    min-height: 320px;
    margin-bottom: 30px;
}

.coach_block .coach_badges,
.video_box .video_badges {
    position: absolute;
    top: 20px;
    right: 20px;
}

.video_box:before {
    content: '';
    background-image: linear-gradient(to top, var(--thm-color-five), transparent);
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video_box .video_btn {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    border: 2px solid var(--thm-white);
    background-color: transparent;
    z-index: 1;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--thm-white);
}

.video_box .video_text h6{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.video_box .video_text {
    position: absolute;
    bottom: 20px;
    left: 30px;
    width: calc(100% - 60px);
    z-index: 1;
}

/*Banner/Footer*/
.banner {
    background-color: var(--thm-white);
    height: 750px;
    width: 100%;
    position: relative;
}

.banner .element_1 {
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
}
.banner .element_line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    object-fit: cover;
}
.footer-area {
    background-color: var(--thm-white);
    height: 410px;
    width: 100%;
    position: relative;
}
.footer-area .element_1 {
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: -1;
    height: 400px;
    width: 65%;

}
.footer-area .element_line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: -1;
    object-fit: cover;
}
.banner .image_box .circle_element {
    width: 100%;
    display: flex;
    max-width: 400px;
    min-height: 400px;
    border-radius: 50%;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    z-index: -1;
    left: -40px;
    right: 0;
    box-shadow: 50px 5px 60px 130px rgb(var(--thm-color-three-rgb), 15%);
}

.banner .text_box .title span {
    font-weight: 100;
    font-size: 4rem;
}

.banner .text_box p {
    font-size: 18px;
    font-weight: 600;
}

.banner .bottom-line {
    border-bottom: 2px solid var(--thm-border);
    position: absolute;
    bottom: 0;
    left: 15px;
    width: calc(100% - 30px);
    right: 0;
    z-index: -1;
}

/*Menu Mobile/Lateral*/
.aside_bar {
    position: fixed;
    top: 0;
    left: -400px;
    width: 400px;
    height: 100%;
    background-color: var(--thm-white);
    z-index: 999;
    transition: .5s cubic-bezier(.77, 0, .175, 1);
    overflow: auto;
    padding: 30px;
}

.aside_bar.aside_bar_right {
    left: auto;
    right: -400px;
    width: 400px;
}

.aside_bar.aside_bar_left {
    right: auto;
    left: -400px;
    width: 400px;
}

.aside_bar.aside_bar_left.aside_mobile {
    right: auto;
    left: -300px;
    width: 300px;
}

.aside_bar.aside_bar_right.open {
    left: auto;
    right: 0;
}

.aside_bar.aside_bar_left.open {
    right: auto;
    left: 0;
}

.aside-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 998;
    background-color: rgba(0, 0, 0, .7);
    transition: .3s;
    opacity: 0;
    visibility: hidden;
    cursor: pointer;
}

.aside_bar.open+.aside-overlay {
    opacity: 1;
    visibility: visible;
}

.aside_bar.aside_mobile {
    padding: 0;
}

.aside_bar .logo {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    padding-left: 15px;
}

.aside_bar .logo img {
    max-width: 180px;
}

.aside_bar.aside_mobile ul .menu-item a {
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    color: var(--thm-color-one);
    font-weight: 800;
    border-bottom: 2px solid var(--thm-border);
    text-transform: uppercase;
    font-size: 14px;
}

.aside_bar.aside_mobile .menu-item-has-children>.sub-menu>li.menu-item-has-children>.sub-menu,
.aside_bar.aside_mobile .menu-item-has-children>.sub-menu {
    position: relative;
    display: none;
    opacity: 1;
    visibility: visible;
    width: 100%;
    box-shadow: none;
    left: 0;
}

.aside_bar.aside_mobile .menu-item-has-children>.sub-menu>li.menu-item-has-children>a:after {
    position: relative;
    transform: none;
    right: 0;
}

.aside_bar .sidebar .sidebar_widget {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
}





/* IMAGE STYLES */



.cadastro [type="checkbox"] + img, .cadastro [type="radio"] + img {
  position: relative;
  cursor: pointer;
  width: 185px;
  display: block;
  margin: 0 auto 12px auto;
}

/* CHECKED STYLES */
.cadastro [type="checkbox"]:checked + img, .cadastro [type="radio"]:checked + img{
 
    border-radius: 1px;
 
  } 
.cadastro .adddepois [type="checkbox"]:checked + img, .cadastro .adddepois  [type="radio"]:checked + img{
    outline: none;
    border-radius: 0;
   padding: 0;
}
.cadastro .adddepois [type="checkbox"] + img, .cadastro .adddepois [type="radio"] + img{
    position: relative;
    cursor: pointer;
    width: 40px;
    display: inline-block;
    margin: 0 auto 12px auto;
}

.adddepois label{
    border: 2px solid #247499;
    padding: 5px;
    border-radius: 5px;
    float: right;
    cursor: pointer;
}

.clear-all{
    clear: both;
}
.adddepois .marca{
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
}
.adddepois img{
    max-width: 40px;
    margin-right: 14px;
    transition: all 300ms linear;
  -webkit-animation: puff-in-center 0.2s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
            animation: puff-in-center 0.2s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
}


/* CHECKED STYLES */
.tipo-solicitacao{
      display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
-webkit-box-pack:center;
    -ms-flex-pack:center;
        justify-content:center;
-webkit-box-align:center;
    -ms-flex-align:center;
        align-items:center;
}
.check-especial{
    margin: 0px 28px;
}
.tipo-solicitacao [type="checkbox"], .tipo-solicitacao [type="radio"]  { 
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.tipo-solicitacao .check-especial .marca .checked{
    display:none!important;
}
.tipo-solicitacao .check-especial .marca .unchecked{
    display: inline-block!important;
}
.tipo-solicitacao .check-especial .checked{
    display: inline-block!important;
}
.tipo-solicitacao .check-especial .unchecked{
    display: none!important;
}

.tipo-solicitacao [type="checkbox"]:checked + img, .tipo-solicitacao [type="radio"]:checked + img{
    outline: 4px solid #1f789b;
    border-radius: 1px;
   padding: 10px;
  } 
.tipo-solicitacao .check-especial [type="checkbox"]:checked + img, .tipo-solicitacao .check-especial  [type="radio"]:checked + img{
    outline: none;
    border-radius: 0;
   padding: 0;
}
.tipo-solicitacao .check-especial [type="checkbox"] + img, .tipo-solicitacao .check-especial [type="radio"] + img{
    position: relative;
    cursor: pointer;
    width: 40px;
    display: inline-block;
    margin: 0 auto 12px auto;
}

.check-especial label{
    border: 2px solid #247499;
    padding: 8px 19px 4px 19px;
    border-radius: 5px;
    float: right;
    cursor: pointer;
}
.servicos-interesse .tipo-solicitacao{
    background: #fff9f9;
    border-radius: 6px;
    padding: 9px 0px 0px 0px;
    margin: 0px 0px 14px 0px;
    display: block;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
   
}
.servicos-interesse .check-especial{
    margin: 0;
}
.servicos-interesse .check-especial label{
    border: none;
    float: initial;
}

.servicos-interesse .check-especial img{
    width: 30px;
    margin-right: 5px;
}
.servicos-interesse .check-especial span{
    font-size: 1rem;
}
.check-especial span{
        font-size: 1.2rem;
    font-weight: 700;
    line-height: normal;
    color: #24799a;
}

.clear-all{
    clear: both;
}

.check-especial .marca span:not(.error){
    -webkit-filter: grayscale(1);
            filter: grayscale(1);
}
.check-especial img{
    max-width: 40px;
    margin-right: 14px;
    transition: all 300ms linear;
  -webkit-animation: puff-in-center 0.2s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
            animation: puff-in-center 0.2s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
}

@-webkit-keyframes puff-in-center {
  0% {
    -webkit-transform: scale(2);
            transform: scale(2);
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}
@keyframes puff-in-center {
  0% {
    -webkit-transform: scale(2);
            transform: scale(2);
    -webkit-filter: blur(4px);
            filter: blur(4px);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}


.cadastro .adddepois .marca .checked{
    display:none!important;
}
.cadastro .adddepois .marca .unchecked{
    display: inline-block!important;
}
.cadastro .adddepois .checked{
    display: inline-block!important;
}
.cadastro .adddepois .unchecked{
    display: none!important;
}





#grad1 {
    background-color: : #9C27B0;
    background-image: linear-gradient(120deg, #FF4081, #81D4FA)
}
.form-servicos {
    width: 80%;
    margin: 0 auto;
    display: block;
}

.form-servicos h3{
    color: #208da1;
    margin: 14px 0px;
    text-align: left;
}
.form-servicos .formPadrao{
    text-align: left;
} 
.formPadrao {
    text-align: center;
    position: relative;
    margin-top: 20px
}


.formPadrao fieldset .form-card {
    background: white;
    border: 0 none;
    border-radius: 0px;
    box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
    padding: 20px 40px 30px 40px;
    box-sizing: border-box;
    width: 94%;
    margin: 0 3% 20px 3%;
    position: relative
}

.formPadrao fieldset {
    background: white;
    border: 0 none;
    border-radius: 0.5rem;
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding-bottom: 20px;
    position: relative
}

.formPadrao fieldset:not(:first-of-type) {
    display: none
}

.formPadrao fieldset .form-card {
    text-align: left;
    color: #9E9E9E
}
.datepickerPadrao table td, .datepickerPadrao table th{
    font-size: 12px;
    padding: 0px 4px;
    border-spacing: 0 2px;
    text-align: center;
} 
.datepickerPadrao{
    position: fixed;
    top:10%!important;
    right: 0!important;
    max-width: 380px!important;
    background: #ffffff;
}
.datepicker .datepicker-years tbody tr td span,
.datepicker  .datepicker-months .month,
.datepicker  .datepicker-decades .decade,
.datepicker  .datepicker-centuries .century{
    padding: 5px 5px;
    border: 1px solid #38b2b4;
    cursor: pointer;
    display: inline-block;
    margin: 2px 6px;
    border-radius: 6px;
}






#calendario .item-aula h5{
    margin-bottom: 0;
    font-size: 1.4rem;
    color: white;
}
.action-button.agendar-proximo{
    width: auto!important;
}
.alinhamento-clones{
       -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.item-aula{
    padding: 6px 12px;
    background: -o-linear-gradient(45deg, #2db0b0, #237a9b);
    background: linear-gradient(45deg, #38b2b4, #266b96);
    border-radius: 5px;
    -webkit-filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.1));
    filter: drop-shadow(0px 2px 2px rgba(0,0,0,0.1));
    margin: 14px 0px;
}

#calendario .item-aula input, #calendario .item-aula select{
    border-radius: 6px;
    margin: 4px 0px;
    border: none;
    width: 100%;
    text-align: center;
}

#calendario .item-aula input:focus, #calendario .item-aula select:focus{
    border: none;
}
.alinhamento-produto{
      display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
-webkit-box-pack:center;
    -ms-flex-pack:center;
        justify-content:center;
-webkit-box-align:center;
    -ms-flex-align:center;
        align-items:center;
        max-width: 100%;
        padding: 14px 9px;
}
.alinhamento-aula{
        display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
-webkit-box-pack:center;
    -ms-flex-pack:center;
        justify-content:center;
-webkit-box-align:center;
    -ms-flex-align:center;
        align-items:center;
}
.select-padrao{
        padding: 0px 8px 4px 8px;
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 25px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    font-size: 16px;
    letter-spacing: 1px;
}

.formPadrao input,
.formPadrao textarea, .formPadrao select{
    padding: 0px 8px 4px 8px;
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 25px;
    margin-top: 2px;
    width: 100%;
    box-sizing: border-box;
    font-family: "Manrope", sans-serif;
    color: #247499;
    font-size: 1.1rem;
    letter-spacing: 1px
}

.formPadrao input:focus,
.formPadrao textarea:focus {
/*    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;*/
    border: none;
    font-weight: bold;
    border-bottom: 2px solid skyblue;
    outline-width: 0
}

.formPadrao .action-button {
    width: auto;
    background: linear-gradient(45deg, #38b2b4, #266b96);
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 16px;
    margin: 10px 5px;
    display: inline-block;
    border-radius: 9px;
}

.formPadrao .action-button:hover,
.formPadrao .action-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px skyblue
}

.formPadrao .action-button-previous {
    width: 144px;
    background: linear-gradient(45deg, #266b96, #38b2b4);
    font-weight: bold;
    color: white;
    border: 0 none;
    border-radius: 0px;
    cursor: pointer;
    padding: 10px 6px;
    margin: 10px 5px;
    border-radius: 9px;
}

.formPadrao .action-button-previous:hover,
.formPadrao .action-button-previous:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #616161
}

select.list-dt {
    border: none;
    outline: 0;
    border-bottom: 1px solid #ccc;
    padding: 2px 5px 3px 5px;
    margin: 2px
}

select.list-dt:focus {
    border-bottom: 2px solid skyblue
}

.card {
    z-index: 0;
    border: none;
    border-radius: 0.5rem;
    position: relative
}

.fs-title {
    font-size: 25px;
    color: #2C3E50;
    margin-bottom: 10px;
    font-weight: bold;
    text-align: left
}

#progressbar {
    margin-bottom: 30px;
    overflow: hidden;
    color: lightgrey
}

#progressbar .active {
    color: #000000
}
.form-card p{
    margin: 0;
}
.checkout .form-card p{
    font-size: 23px;
    line-height: normal;
    margin-bottom: 10px;
    color: #339eac;
    font-weight: 700;
}
#progressbar li {
    list-style-type: none;
    font-size: 12px;
   /* width: 25%;*/
   width: 33%;
    float: left;
    position: relative
}

#progressbar i{
    position: absolute;
    color: #ffffff;
    top: 17%;
    left: 0;
    right: 0;
    font-size: 1.2rem;
}
#progressbar #account:before {
    font-family: FontAwesome;
    content: "\f023"
}
#progressbar #data:before {
    font-family: FontAwesome;
    content: "\f073"
}
#progressbar #horarioAula:before {
    font-family: FontAwesome;
    content: "\f017"
}

#progressbar #personal:before {
    font-family: FontAwesome;
    content: "\f007"
}

#progressbar #payment:before {
    font-family: FontAwesome;
    content: "\f09d"
}

#progressbar #confirm:before {
    font-family: FontAwesome;
    content: "\f00c"
}

#progressbar li:before {
    content:  "";
    width: 50px;
    height: 50px;
    line-height: 45px;
    display: block;
    font-size: 18px;
    color: #ffffff;
    background: lightgray;
    border-radius: 50%;
    margin: 0 auto 10px auto;
    padding: 2px
}

#progressbar li:after {
    content: '';
    width: 100%;
    height: 2px;
    background: lightgray;
    position: absolute;
    left: 0;
    top: 25px;
    z-index: -1
}

#progressbar li.active:before,
#progressbar li.active:after {
    background: linear-gradient(45deg, #38b2b4, #266b96);
}

.radio-group {
    position: relative;
    margin-bottom: 25px
}

.radio {
    display: inline-block;
    width: 204;
    height: 104;
    border-radius: 0;
    background: lightblue;
    box-shadow: 0 2px 2px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    cursor: pointer;
    margin: 8px 2px
}

.radio:hover {
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.3)
}

.radio.selected {
    box-shadow: 1px 1px 2px 2px rgba(0, 0, 0, 0.1)
}

.fit-image {
    width: 100%;
    object-fit: cover
}



.home-section p{
  line-height: normal;
  margin-bottom: 11px;
}
.item figure{
  margin: 0;
}
.add-mochila{
    position: relative;
    outline: none;
    width: 180px;
    background: #ffffff;
    padding: 10px;
    display: flex;
    font-size: 0.8rem;
    line-height: normal;
    font-weight: 900;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
    border-radius: 3px;
    color: #23799b;
    text-transform: uppercase;
}
.add-mochila img{
    display: inline-block;
    width: 40px;
    top: 0;
    left: 7px;
}
.info-curso{
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.1);
    padding: 11px 0px 9px 0px;
}
.info-curso img{
    display: inline-block;
    width: 30px;
    margin-right: 6px;
}
.info-curso span{
      font-weight: 700;
    color: #24c3c2;
    font-size: 1.1rem;
    margin-right: 33px;
}
.interna{
  position: relative;
  margin-top: 100px;
  z-index: 9;
}
.interna-2{
  position: relative;
   margin-top: 150px;
   z-index: 9;
}
.titulo h1{
  font-size: 4rem;
}
.titulo figure{
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
}
.titulo figure img{
  max-width: 110px;
}

.sombra-padrao{
   -webkit-box-shadow: 0px 2px 8px rgba(0,0,0,0.5);
  box-shadow: 0px 2px 8px rgba(0,0,0,0.5);
}

.oficina-produto-descricao .item:after{
  position: relative;
  top: 50px;
    content: "";
    display: block;
    width: 100%;
    background-image: -o-linear-gradient(107deg, #266996, #1da2a7);
    background-image: linear-gradient(343deg, #266996, #1da2a7);
    height: 15px;
    -webkit-animation: bgHomeAdmin 3s cubic-bezier(0.250, 0.460, 0.450, 0.940)  both;
    animation: bgHomeAdmin 3s cubic-bezier(0.250, 0.460, 0.450, 0.940)  both;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
    -ms-box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
}
.oficina-produto-descricao .item{
 /* display: none;*/
      position: relative;
    padding: 50px 25px 70px 25px;
    border-radius: 50px 0px 0px 0px;
    background: rgba(142, 102, 255, 0.05);
    margin-bottom: 70px;
}
.oficina-produto-descricao .item img{
 max-width: 254px;
 margin: 0 auto;
 display:  block;

}
.oficina-produto .btn{
  width: 100%;
}
.oficina-produto-descricao .informacoes{
    display: block;
}
.clear{
  clear: both;
}
.informacoes h3{
  display: inline-block;
}
.informacoes .bag{
  display: inline-block;
  margin-left: 10px;
}

.bag{
  cursor: pointer;
  position: relative;
}

.bag img{
  width: 50px;
}

.bag span{
    position: absolute;
    left: -16px;
    top: 64px;
    margin: 0 auto;
    text-align: center;
    color: #1d9fa6;
    width: 100px;
    font-weight: 800;
    display: none;
}
.oficina-produto p{
  min-height: 175px;
}
.informacoes .bag span{
    position: absolute;
    left: -33px;
    top: 64px;
    margin: 0 auto;
    text-align: center;
    color: #1d9fa6;
    width: 125px;
    font-weight: 800;
    background: #ffffff;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
    display: none;
}
.bag:hover span{
  display: block;
}

.align-center{
  align-items: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
}
.div-flex{
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#lgpd-error{
  top: 54px;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: block;
}
label.lgpd{
    padding-left: 10px;
}
.section-title {
    margin-bottom: 38px
}
.bg-oficinas{
  background: #f9f9f9;
}
.oficina-produto .img-fluid {
    height: 100px
}

.section {
    padding-top: 40px;
    padding-bottom: 1400px
}

.rounded-lg {
    border-radius: 10px
}

.shadow,
.subscription-wrapper {
    box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1) !important
}

.hover-bg-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(134deg, #1ca9a9 0%, #2e82a0 100%);
    z-index: -1;
    opacity: 0
}

.hover-bg-primary:hover {
    background: transparent
}
.hover-bg-primary:hover img{
      filter: brightness(10);
}
.hover-bg-primary:hover:before {
    opacity: 1
}

.pricing-table:before,
.hover-bg-primary::before,
.card-border-bottom:after {
    transition: ease 0.3s
}

.hover-bg-primary:hover * {
    color: #fff !important
}

.hover-bg-primary:hover * {
    color: #fff !important
}

.btn-outline-primary {
    color: #007ac7;
    border: 2px solid #00e0d8
}

.btn {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
    text-transform: capitalize;
    padding: 14px 45px;
    border-radius: 45px;
    font-weight: 500;
    border: 1px solid;
    position: relative;
    z-index: 1;
    transition: .3s ease-in;
    overflow: hidden
}

.hover-bg-primary .btn {
    transition: unset
}

.btn-outline-primary:hover {
    color: #fff !important;
    background: none;
    border: 1px solid #ffffff;
}
.oficina-item{
  color: #21849d;
}
.oficina-item:active{
  background: none!important;
}

.comments-form input.lgpd-input{
    display: inline-block!important;
    width: 33px;
    height: 33px;
}
.info{
  color: #36a6af;
}
.itemCheck .error{
    position: absolute;
    bottom: 68px;
}
.formPadrao span.error{
    position: absolute;
    bottom: 0;
    left: 19px;
}
.formPadrao .valores span.error{
    top: 50px;
    left: 0;
}
.formPadrao span.error, span.error{
    color: #fd1111;
    font-size: 12px;
    font-weight: normal;
    line-height: normal;
    margin: 0;
    display: inline-block;
    padding: 0;
}
.campoOculto{
    visibility: hidden;
    height: 0;
    width: 0;
    pointer-events: none;
    position: absolute;
    z-index: -1;
}
.banner-home{
  font-size: 3rem;
}
.planos-disponiveis h4{
  display: inline-block;
}
.contact-form-area{
  position: relative;
  z-index: 99;
}
.cv::before{
  position: absolute;
  content: "";
  width: 100%;
  height: 4px;
  display: block;
  top: -20px;
   box-shadow: 0px 2px 8px rgba(0,0,0,0.3);
    -ms-box-shadow: 0px 2px 8px rgba(0,0,0,0.3);
    background-image: linear-gradient(45deg, #2c719a, #1cb0ad);
}

.cv{
  margin-top: 5px;
  position: relative;
  width: 100%;
  display: block;
}

.cv .foto{
     border: 7px solid #369fac;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.3);
    -ms-box-shadow: 0px 2px 8px rgba(0,0,0,0.3);
}
.logo img{

      transition: all 400ms ease-in-out;
}
.intro{
  display: block;
   line-height: 1.1;
}
.intro .intro1{
    color:#1B212F;
    font-weight: normal;
       font-size: 3rem;
    margin: 0;
    font-style: oblique;
    display: block;
}
.intro span.t1{
  font-weight: normal;
    font-size: 2rem;
    margin: 0;
    display: block;
}
.intro span.t2{
  font-weight: normal;
    font-size: 28px;
    margin: 0;
    display: block;
}
.intro h3{
  font-weight: normal;
}
.quem-somos .citar{
  display: block;
  margin-bottom: 30px;
}

.quem-somos .citar p{
    margin: 0;
    text-align: right;
    font-size: 1.3rem;
    font-style: italic;
    font-weight: 500;
}

.chose-wrapper.text-quest{
  margin-top: 90px;
}

.quem-somos p{
      font-size: 20px;
    font-weight: 400;
    line-height: 1.7;
    text-indent: 30px;
}
.sticky .logo img {
    padding: 10px;
}
.datepicker-inline {
    width: 100%;
}
.datepicker table {
        border-collapse: separate;
    border-spacing: 0 5px;
    width: 100%;
}

.aulas-disponiveis{
  display: block;
  width:100%;
    border-radius: 5px;
    background: #ffffff;
    -webkit-box-shadow: 5px 15px 30px rgba(27, 33, 47, 0.05);
    box-shadow: 5px 15px 30px rgba(27, 33, 47, 0.05);
    padding:18px 0 15px 0;
}
.aulas-disponiveis select{
    outline: none;
    color: #208da1;
    font-weight: 700;
    width: 60%;
    padding: 12px 7px;
    margin: 0 auto;
    border: none;
    border-radius: 6px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
}
#blocohorario{
     height: 230px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.itemCheck input{
    opacity: 0;
    position: absolute;
    pointer-events: none;
}

.itemCheck  input[type="radio"]:checked+label, .itemCheck  .input[type="checkbox"]:checked+label{ 
     background: #266b96;
     color: #ffffff;
     border-color: #266b96;
}
.itemCheck label{
    width: 90%;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    background: transparent;
    padding: 5px 14px;
    margin: 4px;
    border-radius: 30px;
    border: 1px solid gray;
}
.select-horarios{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.select-horarios .active.hora{
  background-image:-webkit-gradient(linear, left top, left bottom, from(#1ba4a7), to(#256e97));
background-image:-o-linear-gradient(top, #1ba4a7, #256e97);
background-image:linear-gradient(to bottom, #1ba4a7, #256e97);
}
.select-horarios .hora{
    display: inline-block;
    background: #93b1b7;
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 7px;
    border: none;
    margin: 4px;
    outline: none;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
}
#calendario .datepicker td, #calendario .datepicker th{
    box-shadow: 0px 1px 3px rgba(0,0,0,0.1);
    text-align: center;
    width: 11px;
    height: 8px;
    font-size: 0.8rem;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 0;
    border: none;
    padding: 6px;
    padding-bottom: 1px;
    padding-top: 1px;
    cursor: pointer;
}
#calendario .datepicker table tr td.active:hover, 
#calendario .datepicker table tr td.active:hover:hover, 
#calendario .datepicker table tr td.active.disabled:hover, 
#calendario .datepicker table tr td.active.disabled:hover:hover,
#calendario .datepicker table tr td.active:active, 
#calendario .datepicker table tr td.active:hover:active, 
#calendario .datepicker table tr td.active.disabled:active, 
#calendario .datepicker table tr td.active.disabled:hover:active, 
#calendario .datepicker table tr td.active.active, 
#calendario .datepicker table tr td.active:hover.active, 
#calendario .datepicker table tr td.active.disabled.active, 
#calendario .datepicker table tr td.active.disabled:hover.active, 
#calendario .datepicker table tr td.active.disabled, 
#calendario .datepicker table tr td.active:hover.disabled, 
#calendario .datepicker table tr td.active.disabled.disabled, 
#calendario .datepicker table tr td.active.disabled:hover.disabled, 
#calendario .datepicker table tr td.active[disabled], 
#calendario .datepicker table tr td.active:hover[disabled], 
#calendario .datepicker table tr td.active.disabled[disabled], 
#calendario .datepicker table tr td.active.disabled:hover[disabled]{
background-image:-webkit-gradient(linear, left top, left bottom, from(#1ba4a7), to(#256e97));
background-image:-o-linear-gradient(top, #1ba4a7, #256e97);
background-image:linear-gradient(to bottom, #1ba4a7, #256e97);
color: #ffffff;
}

.datepicker-months .month.disabled{
  opacity: 0.5;
    background: #c5c5c5;
    filter: blur(2px);
}
.datepicker-months .month{
  padding: 0px 10px;
}
  .datepicker-days .dow{
        color: #ffffff;
    background: linear-gradient(45deg, #38b2b4, #266b96);
  }
  .datepicker-days .disabled.day{
    opacity: 0.5;
    background: #c5c5c5;
    filter: blur(2px);
}

.cadastro{
  padding: 0px 21px;
}
.cadastro label{
        font-size: 1rem;
    font-weight: 700;
    color: #247499;
}
.cadastro #calendario  .item-aula input{
    padding: 0px 8px 4px 8px;
    color: #247499;
}
.item-aula ::-webkit-input-placeholder { /* Edge */
  color: #247499;
}

.item-aula :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #247499;
}

.item-aula ::placeholder {
  color: #247499;
}
.cadastro input{
      width:100%;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
    border: 1px solid #208da1;
    padding: 7px 7px;
    color: #247499;
    font-weight: 400;
    border-radius: 3px;
}
.cadastro select.padrao{
      width:100%;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
    border: 1px solid #208da1;
    padding: 7px 7px;
    color: #247499;
    font-weight: 400;
    border-radius: 3px;
    height: 41px;
    border: 1px solid #208da1;
}
.cadastro textarea{
      width:100%;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.2);
    border: 1px solid #208da1;
    padding: 7px 7px;
    font-size: 1.4rem;
   color: #247499;
    font-weight: 400;
    border-radius: 3px;
    height: 130px
}
.box-pagamento{
  text-align: center;
}
.box-pagamento .informacoes{

  text-align: left;
  padding: 0px 21px;
  margin: 14px auto;
}
.informacoes h3{
  margin-bottom: 0px;
}
.box-pagamento .informacoes strong{
  color: #208da1;
}
.box-pagamento .informacoes p{
  font-weight: 600;
  margin-bottom:0px;
}
body {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  font-style: normal;
  color: #707070;
}

#bannerAnimado{
  padding-top: 133px;
}
.f-left {
  float: left;
}

.f-right {
  float: right;
}

.fix {
  overflow: hidden;
}

a,
.button {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: medium none;
  text-decoration: none;
}

button:focus, input:focus, input:focus, textarea, textarea:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Manrope", sans-serif;
  color: #1B212F;
  line-height: 1.1;
  margin-top: 0px;
  /* margin-bottom: 0; */
  font-style: normal;
  font-weight: 700;
  text-transform: normal;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
  text-decoration: none;
}

/* h1 {
  font-size: 40px;
}
 */
h2, .default-heading {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

p {
    font-size: 15px;
    font-weight: 400;
    line-height: 25px;
    font-family: "Manrope", sans-serif;
    color: #707070;
    margin-bottom: 30px;
}

hr {
  border-bottom: 1px solid rgba(27, 33, 47, 0.1);
  border-top: 0 none;
  margin: 30px 0;
  padding: 0;
}

label {
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
}

*::-moz-selection {
  background: #000;
  color: #ffffff;
  text-shadow: none;
}

::-moz-selection {
  background: #000;
  color: #ffffff;
  text-shadow: none;
}

::selection {
  background: #000;
  color: #ffffff;
  text-shadow: none;
}

/*--
    - Input Placeholder
-----------------------------------------*/

*::-webkit-input-placeholder {
  color: #000;
  font-size: 14px;
  opacity: 1;
}

*:-ms-input-placeholder {
  color: #000;
  font-size: 14px;
  opacity: 1;
}

*::-ms-input-placeholder {
  color: #000;
  font-size: 14px;
  opacity: 1;
}

*::placeholder {
  color: #000;
  font-size: 14px;
  opacity: 1;
}

/*--
    - position Classes
-----------------------------------------*/
.pos-rel {
  position: relative;
}

.pos-abl {
  position: absolute;
}

/*--
    - Common Classes
-----------------------------------------*/
.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

/*--
    - Background color
-----------------------------------------*/
.black-soft-bg {
  background: #151524;
}

.grey-bg {
  background: #eff0fb;
}

.grey-bg-fot {
  background: #F6F6FE;
}

.grey-bg-soft {
  background: #F3F7FC;
}

.grey-bg-soft-2 {
  background: #E8EFFF;
}

.grey-bg-soft-3 {
  background: #F8F8FF;
}

.white-bg {
  background: #ffffff;
}

.black-bg {
  background: #000;
}

.heding-bg {
  background: #1B212F;
}

.theme-bg {
  background: #208da1;
}

.theme-soft-bg {
  background: #6767fe;
}

.gradient-bg {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 114, 58, 0.05)), to(rgba(241, 77, 93, 0.03)));
  background: linear-gradient(rgba(255, 114, 58, 0.05) 0%, rgba(241, 77, 93, 0.03) 100%);
  background: -o-linear-gradient(rgba(255, 114, 58, 0.05) 0%, rgba(241, 77, 93, 0.03) 100%);
}

.gradient-bg-2 {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 114, 58, 0.04)), to(rgba(241, 77, 93, 0.02)));
  background: linear-gradient(rgba(255, 114, 58, 0.04) 0%, rgba(241, 77, 93, 0.02) 100%);
  background: -o-linear-gradient(rgba(255, 114, 58, 0.04) 0%, rgba(241, 77, 93, 0.02) 100%);
}

/*--
    - color
-----------------------------------------*/
.white-color {
  color: #ffffff;
}

.black-color {
  color: #000;
}

.theme-color {
  color: #208da1;
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .pad-bottom-sm {
    padding-bottom: 100px;
  }
}

/*--
section-title
----------------------------------------*/
.section-title {
  position: relative;
  z-index: 2;
}

.section-title h5 {
  color: #208da1;
}

.section-title h2 {
  font-size: 44px;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title h2 {
    font-size: 36px !important;
  }
}

 .item iframe{
    width: 100%;
    height: 85%;
  }
.h0{
    height: 0px!important;
}
.item-datepicker{
    height: 333px;
    overflow: hidden;
    transition: height 300ms linear;
}

@media (max-width: 767px) {
    .navegacao{
        text-align: center;
    }
    .info-aluno{
        text-align: center;
        margin: 10px 0px;
    }

    .item-datepicker.h0 .containerCalendario{
        position: relative;
    }
    .item-datepicker .containerCalendario{
        position: absolute;
            position: absolute;
    right: -11px;
    }
    .quem-somos .chamada{
        font-size: 1.6rem;
    }
    .padrao-modal .add-mochila-1{
        margin: 0 auto;
        float: none;
    }

    .padrao-modal.modalservico h3{
        font-size: 1.4rem;
    }
    .padrao-modal .titulo figure img{
            max-width: 45px;
    }
    .padrao-modal .modal-dialog{
    top: 46px!important;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
}
.modalservico .thumb{
    margin: 0px auto 10px auto;
    display: block;
}
    .cadastro .formSteps.radios h3{
        text-align: center;
        font-size: 1.6rem;
    }
    .cadastro .labels-img label{
        margin: 70px auto;
        display: block;
    }
 
    .formPadrao{
        width: 100%;
        padding: 0;
        font-family: "Manrope", sans-serif;
    }
     .formPadrao .labels-img{
        display: block;
    }
    .formPadrao fieldset .form-card{
        margin: 0;
        padding: 0;
        width: 100%;
        box-shadow: none;
    }
  .add-mochila{
    margin: 0 auto;
  }
  .great-deal-area.pt-xs-100{
    padding-top: 0px;
  }
.slider__img__box.mb-50{
    margin-bottom: 0px;
    overflow: hidden;
}
  .item iframe{
    width: 100%;
    height: 100%;
  }

  .oficina-produto-descricao .informacoes{
    text-align: center;
    float: none;
  }
  .item h2{
        font-size: 1.6rem;
    text-align: center;
    margin-top: 28px;
  }
  .pg-oficinas .item .img-fluid{
     max-width: 100%;
  }
  .item .img-fluid{
    max-width: 50%;
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  .section-title h2 {
    font-size: 32px !important;
  }
}

.section-title .sub-title {
  font-weight: 500;
}

.section-title-2 h5 {
  color: #1B212F;
}

.section-title-2 .left-line::before {
  left: -3px;
  top: 10px;
  width: 30px;
  height: 2px;
}

@media (max-width: 767px) {
  .section-title-3 {
    padding-left: 0;
    padding-right: 0;
  }
}

.section-title-3 h5 {
  color: rgba(48, 48, 48, 0.6);
  text-transform: uppercase;
}

.section-title-3 .bottom-line::before {
  background-color: rgba(255, 114, 58, 0.2);
  height: 20px;
  width: 100%;
  bottom: 8px;
}

.section-title-4 h2 {
  font-size: 32px;
  line-height: 1.5;
}

.bottom-line {
  position: relative;
  display: inline-block;
}

.bottom-line::before {
  content: '';
  position: absolute;
  background-color: #208da1;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.sub-title {
  color: #000009;
  font-size: 24px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  line-height:normal;
}

.semi-title {
  font-size: 28px;
  font-weight: 600;
}

.skew-bg {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.skew-bg::before {
  top: 0px;
  -webkit-transform: skew(45deg) scaleX(0);
          transform: skew(45deg) scaleX(0);
  width: 160%;
  height: 100%;
  left: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  content: "";
  position: absolute;
  border-radius: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.skew-bg::after {
  top: 0px;
  -webkit-transform: skew(45deg) scaleX(0);
          transform: skew(45deg) scaleX(0);
  width: 160%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  content: "";
  position: absolute;
  border-radius: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.swipe-right {
  position: relative;
  z-index: 1;
}

.swipe-right::before {
  content: '';
  position: absolute;
  width: 0;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.round-eclipse {
  position: relative;
  z-index: 1;
}

.round-eclipse::before {
  border-radius: 50%;
  background-color: #f5f5fc;
  position: absolute;
  left: 0;
  top: 0;
  width: 72px;
  height: 72px;
  z-index: -1;
}

.popup-video {
  color: #ffffff;
  background: #208da1;
  border-radius: 50%;
  font-size: 14px;
  line-height: 100px;
  display: inline-block;
  width: 100px;
  height: 100px;
  text-align: center;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
  position: relative;
  z-index: 1;
  -webkit-animation: pulseBig infinite 5s linear;
          animation: pulseBig infinite 5s linear;
}

.popup-video:hover {
  color: #ffffff;
  background: #208da1;
}

#scrollUp {
  background: #208da1;
  width: 45px;
  height: 45px;
  position: absolute;
  right: 15px;
  bottom: 100px;
  font-size: 15px;
  border-radius: 50%;
  line-height: 45px;
  text-align: center;
}

#scrollUp i {
  color: #ffffff;
}

/*--
    - Overlay
------------------------------------------*/
.overlay-soft {
  position: relative;
  z-index: 1;
}

.overlay-soft::after {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
}

[data-overlay] {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

[data-overlay]::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
}

/*-- Overlay Color --*/
[data-overlay="light"]::before {
  background-color: #ffffff;
}

[data-overlay="dark"]::before {
  background-color: #208da1;
}

/*-- Overlay Opacity --*/
[data-opacity="1"]::before {
  opacity: 0.1;
}

[data-opacity="2"]::before {
  opacity: 0.2;
}

[data-opacity="3"]::before {
  opacity: 0.3;
}

[data-opacity="4"]::before {
  opacity: 0.4;
}

[data-opacity="5"]::before {
  opacity: 0.5;
}

[data-opacity="6"]::before {
  opacity: 0.6;
}

[data-opacity="7"]::before {
  opacity: 0.7;
}

[data-opacity="8"]::before {
  opacity: 0.8;
}

[data-opacity="9"]::before {
  opacity: 0.9;
}

.logo img {
  max-width: 100%;
}

.main-header-area {
  position: absolute;
  z-index: 999;
  left: 0;
  right: 0;
}

.main-header-area .logo-img img {
  max-width: 100%;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .main-header-area {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .main-header-area {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-header-area {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 767px) {
  .main-header-area {
    padding-left: 0;
    padding-right: 0;
  }
}

.main-header-area.sticky {
  padding-top: 0;
  padding-bottom: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-header-area.sticky {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

@media (max-width: 767px) {
  .main-header-area.sticky {
    padding-top: 15px;
    padding-bottom: 15px;

  }
  .item-block
    {
        display: block;
    }
}

.sticky {
  position: fixed;
  z-index: 999;
  width: 100%;
  background: #ffffff;
  top: 0;
  -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
          animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  -webkit-box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
}

.sticky .logo {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}

.sticky .hamburger-menu {
  top: 17px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .sticky .hamburger-menu {
    top: 35px;
  }
}

/* Hamburger-menu */
.hamburger-menu {
  display: inline-block;
}

.hamburger-menu > a {
  display: inline-block;
  font-size: 25px;
  color: #208da1;
}

.side-mobile-menu {
  display: none;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .side-mobile-menu {
    display: block;
  }
}

@media (max-width: 767px) {
  .side-mobile-menu {
    display: block;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .side-mobile-menu {
    display: block;
  }
}

.offset-sidebar {
  display: block;
  margin-top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .offset-sidebar {
    display: none;
  }
}

@media (max-width: 767px) {
    .final{
        margin-bottom: 40px;
    }
    .adddepois span{
            width: 74%;
    display: inline-block;
    vertical-align: middle;
    text-align: start;
    }
  .offset-sidebar {
    display: none;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .offset-sidebar {
    display: none;
  }
}

.main-head-three {
  position: relative;
}

.main-head-three.sticky {
  position: fixed;
}

/*.main-menu {
  margin-left: 130px;
}*/

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .main-menu {
    margin-left: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .main-menu {
    margin-left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .main-menu {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .main-menu {
    margin-left: 0;
  }
}

#theme-menu-one {
  border-bottom: 2px solid rgba(255, 114, 58, 0.1);
}

.navbar-nav .nav-item.active {
  color: #2878EB;
}

.navbar-nav .nav-item.active .nav-link {
  color: #2878EB;
}

.navbar-nav .nav-item .nav-link {
    color: #505050;
    font-size: 20px;
    line-height: 1;
    display: inline-block;
    position: relative;
    margin: 0px 18px;
    padding: 30px 0;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .navbar-nav .nav-item .nav-link {
    margin: 0 20px;
  }
}

.navbar-nav .nav-item .nav-link::after {
  display: none;
}

.navbar-nav .nav-item .nav-link::before {
  content: '\f078';
  position: absolute;
  font-family: "Font Awesome 5 pro";
  font-size: 15px;
  right: -23px;
  top: 44%;
  z-index: 1;
  display: none;
}
.navbar-nav .nav-item .nav-link.single::before{
  display: none;
}

.navbar-nav .nav-item .nav-link:hover {
  color: #2878EB;
}

.navbar-nav .nav-item:last-child .nav-link::before {
  display: none;
}

.navbar-nav .nav-item:hover > .nav-link {
  color: #2878EB;
}

.navbar .dropdown-menu {
  border: 0;
  position: absolute;
  z-index: 5;
  background-color: #fff;
  border-radius: 12px;
  display: block;
  right: 0;
  left: 0;
  padding: 8px 0;
  top: 100%;
  visibility: hidden;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  opacity: 0;
  min-width: 220px;
  -webkit-box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
          box-shadow: 0px 30px 70px 0px rgba(137, 139, 142, 0.15);
  margin: 0;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar .dropdown-menu .dropdown-item {
  color: #505050;
  font-size: 18px;
  padding: 0 25px;
  line-height: 44px;
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar .dropdown-menu .dropdown-item:hover {
  background-color: #FFF0EA;
  padding-left: 30px;
}

.navbar .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .right-btn {
    margin-left: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .right-btn {
    margin-left: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .right-btn ul li:first-child {
    display: none;
  }
}

@media (max-width: 767px) {
  .right-btn ul li:first-child {
    display: none;
  }
}



section.page-title-area {
  background-size: cover;
  background-position: center;
  width: 100%;
  background-repeat: no-repeat;
  min-height: 200px;
  position: relative;
  z-index: 1;
}



@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slide-bar {
    width: 350px;
  }
}

@media (max-width: 767px) {
  .slide-bar {
    width: 310px;
    padding: 25px 20px;
  }
}

.slide-bar.show {
  right: 0;
}

.open-mobile-menu {
  display: inline-block;
}

.open-mobile-menu a {
  display: block;
  width: 50px;
  height: 50px;
  background: #212121;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  margin-left: 20px;
  color: #fff;
}

.open-mobile-menu a:hover {
  background: #208da1;
}

.open-mobile-menu a.active {
  background: #208da1;
}

.close-mobile-menu a {
  color: #ffffff;
  position: relative;
  z-index: 2;
  font-size: 16px;
  top: -10px;
  left: 0;
}

.close-mobile-menu a:hover {
  color: #ff0000;
}

.on-side {
  overflow: hidden;
}

.body-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1010;
  left: 0;
  opacity: 0;
  display: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.body-overlay.active {
  opacity: 1;
  display: block;
}

.side-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.side-mobile-menu ul li a {
  padding: 13px 0;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 16px;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}

.side-mobile-menu ul li a:hover {
  color: #208da1;
  padding-left: 5px;
}

.side-mobile-menu ul li a[aria-expanded="true"] {
  color: #208da1;
}

.side-mobile-menu ul li a[aria-expanded="true"]:before {
  background: #208da1;
  border-color: #208da1;
}

.side-mobile-menu ul li ul {
  padding-left: 0;
  list-style: none;
}

.side-mobile-menu ul li ul li {
  padding-left: 15px;
}

.side-mobile-menu ul li ul li:hover > a {
  color: #208da1;
  padding-left: 20px;
}

.side-mobile-menu ul li ul li:hover > a:before {
  background: #208da1;
  border-color: #208da1;
}

.side-mobile-menu ul li ul li a {
  position: relative;
  padding-left: 15px;
  text-transform: capitalize;
  font-size: 16px;
}

.side-mobile-menu ul li ul li a:before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 2px solid #ffffff;
  border-radius: 50%;
}

.side-mobile-menu ul li ul li a[aria-expanded="true"] {
  padding-left: 20px;
}

.side-mobile-menu ul li.has-dropdown > a:after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-width: 2px 0 0 2px;
  border-style: solid;
  border-color: initial;
  right: 16px;
  top: 50%;
  -webkit-transform: rotate(-45deg) translateY(-50%);
  transform: rotate(-45deg) translateY(-50%);
  -webkit-transform-origin: top;
  transform-origin: top;
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}

.side-mobile-menu ul li.has-dropdown a[aria-expanded="true"]:after {
  -webkit-transform: rotate(-135deg) translateY(-50%);
  transform: rotate(-135deg) translateY(-50%);
}

.offset-widget.offset-logo {
  border-bottom: 1px solid #eeecec;
  padding-bottom: 20px;
}

.offset-widget .info-widget .offset-title {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
}

.offset-widget .info-widget p {
  color: #ffffff;
}

.offset-widget .info-widget.info-widget2 p {
  margin-bottom: 15px;
}

.offset-widget .info-widget.info-widget2 p i {
  margin-right: 7px;
  color: #ffffff;
}

/* Menu Search
-------------------------------------------------------*/
.header-2-icon {
  color: #ffffff;
}

.nav-search.search-trigger.header-2-icon {
  color: #ffffff;
  display: inline-block;
}

.nav-search {
  position: relative;
  display: block;
  color: inherit;
}

.nav-search:hover {
  color: inherit;
}

.search-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 121;
  background: rgba(0, 0, 0, 0.9);
}

.search-wrap .search-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.search-wrap .search-cell {
  position: absolute;
  top: 50%;
  width: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.search-wrap .search-field-holder {
  width: 50%;
  margin: auto;
  position: relative;
  -webkit-animation: slideInUp .3s;
          animation: slideInUp .3s;
}

.search-wrap .main-search-input {
  width: 100%;
  height: 70px;
  border: 0;
  padding: 0 50px;
  text-transform: uppercase;
  background: transparent;
  font-size: 25px;
  color: #fff;
  border-bottom: 2px solid #898989;
  text-align: center;
  letter-spacing: 2px;
}

.search-wrap input.form-control,
.search-wrap input.form-control:focus {
  background-color: #fff;
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

input.main-search-input::-webkit-input-placeholder {
  color: #fff;
  font-size: 25px;
}

input.main-search-input:-moz-placeholder {
  color: #fff;
  opacity: 1;
  font-size: 25px;
}

input.main-search-input::-moz-placeholder {
  color: #fff;
  opacity: 1;
  font-size: 25px;
}

input.main-search-input:-ms-input-placeholder {
  color: #fff;
  font-size: 25px;
}

.search-close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

@-webkit-keyframes jump {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes jump {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40% {
    -webkit-transform: translate3d(0, 50%, 0);
    transform: translate3d(0, 50%, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes rotated {
  0% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}

@keyframes rotated {
  0% {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
  }
  100% {
    -webkit-transform: rotateY(360deg);
    transform: rotateY(360deg);
  }
}

@-webkit-keyframes rotatedHalf {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes rotatedHalf {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@-webkit-keyframes rotatedHalfTwo {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

@keyframes rotatedHalfTwo {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
  100% {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

@-webkit-keyframes scale-upOne {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }
}

@keyframes scale-upOne {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
  }
}

@-webkit-keyframes scale-right {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  50% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes scale-right {
  0% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  50% {
    -webkit-transform: translateX(50%);
    transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0.5;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0.5;
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
  }
}

@-webkit-keyframes hvr-ripple-out {
  0% {
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 1;
  }
  100% {
    top: -6px;
    right: -6px;
    bottom: -6px;
    left: -6px;
    opacity: 0;
  }
}

@keyframes hvr-ripple-out {
  0% {
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
    opacity: 1;
  }
  100% {
    top: -6px;
    right: -6px;
    bottom: -6px;
    left: -6px;
    opacity: 0;
  }
}

@-webkit-keyframes hvr-ripple-out-two {
  0% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
  }
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}

@keyframes hvr-ripple-out-two {
  0% {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 1;
  }
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}

@-webkit-keyframes scale-up-one {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scale-up-one {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes scale-up-one-1 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes scale-up-one-1 {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@-webkit-keyframes scale-up-two {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  40% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}

@keyframes scale-up-two {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  40% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
}

@-webkit-keyframes scale-up-three {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  40% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  100% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}

@keyframes scale-up-three {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  40% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  100% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}

@-webkit-keyframes scale-up-four {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }
  40% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@keyframes scale-up-four {
  0% {
    -webkit-transform: scale(0.6);
    transform: scale(0.6);
  }
  40% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@-webkit-keyframes scale-up-five {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
  }
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@keyframes scale-up-five {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
  }
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
            transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
            transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
            transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
            transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
            transform: translate(0px, 0px) rotate(0deg);
  }
}

@-webkit-keyframes animationFramesOne {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg);
  }
}

@keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
            transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg) scale(0.9);
            transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg) scale(1);
            transform: translate(141px, 72px) rotate(72deg) scale(1);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg) scale(1.2);
            transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
            transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
            transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}

@-webkit-keyframes animationFramesTwo {
  0% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
  20% {
    -webkit-transform: translate(73px, -1px) rotate(36deg) scale(0.9);
  }
  40% {
    -webkit-transform: translate(141px, 72px) rotate(72deg) scale(1);
  }
  60% {
    -webkit-transform: translate(83px, 122px) rotate(108deg) scale(1.2);
  }
  80% {
    -webkit-transform: translate(-40px, 72px) rotate(144deg) scale(1.1);
  }
  100% {
    -webkit-transform: translate(0px, 0px) rotate(0deg) scale(1);
  }
}

@keyframes animationFramesThree {
  0% {
    -webkit-transform: translate(165px, -179px);
            transform: translate(165px, -179px);
  }
  100% {
    -webkit-transform: translate(-346px, 617px);
            transform: translate(-346px, 617px);
  }
}

@-webkit-keyframes animationFramesThree {
  0% {
    -webkit-transform: translate(165px, -179px);
  }
  100% {
    -webkit-transform: translate(-346px, 617px);
  }
}

@keyframes animationFramesFour {
  0% {
    -webkit-transform: translate(-200px, 151px) rotate(0deg);
            transform: translate(-200px, 151px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(251px, -200px) rotate(180deg);
            transform: translate(251px, -200px) rotate(180deg);
  }
}

@-webkit-keyframes animationFramesFour {
  0% {
    -webkit-transform: translate(-200px, 151px) rotate(0deg);
  }
  100% {
    -webkit-transform: translate(251px, -200px) rotate(180deg);
  }
}

@keyframes animationFramesFive {
  0% {
    -webkit-transform: translate(61px, -99px) rotate(0deg);
            transform: translate(61px, -99px) rotate(0deg);
  }
  21% {
    -webkit-transform: translate(4px, -190px) rotate(38deg);
            transform: translate(4px, -190px) rotate(38deg);
  }
  41% {
    -webkit-transform: translate(-139px, -200px) rotate(74deg);
            transform: translate(-139px, -200px) rotate(74deg);
  }
  60% {
    -webkit-transform: translate(-263px, -164px) rotate(108deg);
            transform: translate(-263px, -164px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-195px, -49px) rotate(144deg);
            transform: translate(-195px, -49px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(-1px, 0px) rotate(180deg);
            transform: translate(-1px, 0px) rotate(180deg);
  }
}

@-webkit-keyframes animationFramesFive {
  0% {
    -webkit-transform: translate(61px, -99px) rotate(0deg);
  }
  21% {
    -webkit-transform: translate(54px, -90px) rotate(38deg);
  }
  41% {
    -webkit-transform: translate(-139px, -200px) rotate(74deg);
  }
  60% {
    -webkit-transform: translate(-263px, -164px) rotate(108deg);
  }
  80% {
    -webkit-transform: translate(-195px, -49px) rotate(144deg);
  }
  100% {
    -webkit-transform: translate(-1px, 0px) rotate(180deg);
  }
}

@keyframes gradientBG {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 300% 0;
  }
  100% {
    background-position: 0 0;
  }
}

@-webkit-keyframes gradientBG {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 300% 0;
  }
  100% {
    background-position: 0 0;
  }
}

@-webkit-keyframes imageBgAnim {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 120% 0;
  }
  100% {
    background-position: 0 0;
  }
}

@keyframes imageBgAnim {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 120% 0;
  }
  100% {
    background-position: 0 0;
  }
}

@-webkit-keyframes gradientBG {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 120% 0;
  }
  100% {
    background-position: 0 0;
  }
}

/* Move frame*/
@keyframes moveRound {
  0% {
    background-color: #eee3ff;
    left: -24px;
    top: 0px;
  }
  25% {
    background-color: #feddfc;
    left: 100px;
    top: 0px;
  }
  50% {
    background-color: #efe4ff;
    left: 100px;
    top: 100px;
  }
  75% {
    background-color: #e2fcf4;
    left: -24px;
    top: 200px;
  }
  100% {
    background-color: #eee3ff;
    left: -24px;
    top: 0px;
  }
}

@-webkit-keyframes moveRound {
  0% {
    background-color: #eee3ff;
    left: -24px;
    top: 0px;
  }
  25% {
    background-color: #feddfc;
    left: 100px;
    top: 0px;
  }
  50% {
    background-color: #efe4ff;
    left: 100px;
    top: 200px;
  }
  75% {
    background-color: #e2fcf4;
    left: -24px;
    top: 100px;
  }
  100% {
    background-color: #eee3ff;
    left: -24px;
    top: 0px;
  }
}

@-webkit-keyframes moveShap {
  0% {
    left: 0px;
    top: 0px;
  }
  25% {
    left: 100px;
    top: 0px;
  }
  50% {
    left: 100px;
    top: 100px;
  }
  75% {
    left: 0px;
    top: 200px;
  }
  100% {
    left: 0px;
    top: 0px;
  }
}

@keyframes moveShap {
  0% {
    left: 0px;
    top: 0px;
  }
  25% {
    left: 100px;
    top: 0px;
  }
  50% {
    left: 100px;
    top: 100px;
  }
  75% {
    left: 0px;
    top: 200px;
  }
  100% {
    left: 0px;
    top: 0px;
  }
}

@-webkit-keyframes moveShap2 {
  0% {
    right: 0px;
    top: 0px;
  }
  25% {
    right: 100px;
    top: 0px;
  }
  50% {
    right: 100px;
    top: 100px;
  }
  75% {
    right: 0px;
    top: 200px;
  }
  100% {
    right: 0px;
    top: 0px;
  }
}

@keyframes moveShap2 {
  0% {
    right: 0px;
    top: 0px;
  }
  25% {
    right: 100px;
    top: 0px;
  }
  50% {
    right: 100px;
    top: 100px;
  }
  75% {
    right: 0px;
    top: 200px;
  }
  100% {
    right: 0px;
    top: 0px;
  }
}

/* Heartbeat frame*/
@-webkit-keyframes heartbeat {
  to {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes heartbeat {
  to {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

/* Rotation frame*/
@-webkit-keyframes rotation {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotation {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/* pulseBig */
@-webkit-keyframes pulseBig {
  0% {
    -webkit-box-shadow: 0 0 0 0 #fff;
            box-shadow: 0 0 0 0 #fff;
  }
  50% {
    -webkit-box-shadow: 0 0 0 30px rgba(1, 93, 199, 0);
            box-shadow: 0 0 0 30px rgba(1, 93, 199, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
            box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}
@keyframes pulseBig {
  0% {
    -webkit-box-shadow: 0 0 0 0 #fff;
            box-shadow: 0 0 0 0 #fff;
  }
  50% {
    -webkit-box-shadow: 0 0 0 30px rgba(1, 93, 199, 0);
            box-shadow: 0 0 0 30px rgba(1, 93, 199, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
            box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}

/* pulseBig2 */
@-webkit-keyframes pulseBig2 {
  0% {
    -webkit-box-shadow: 0 0 0 0 #e5aa8f;
            box-shadow: 0 0 0 0 #e5aa8f;
  }
  50% {
    -webkit-box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
            box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
            box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}
@keyframes pulseBig2 {
  0% {
    -webkit-box-shadow: 0 0 0 0 #e5aa8f;
            box-shadow: 0 0 0 0 #e5aa8f;
  }
  50% {
    -webkit-box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
            box-shadow: 0 0 0 20px rgba(1, 93, 199, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
            box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}

/* pulseBig2 */
@-webkit-keyframes pulseBig3 {
  0% {
    -webkit-box-shadow: 0 0 0 0 #208da1;
            box-shadow: 0 0 0 0 #208da1;
  }
  50% {
    -webkit-box-shadow: 0 0 0 10px rgba(1, 93, 199, 0);
            box-shadow: 0 0 0 10px rgba(1, 93, 199, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
            box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}
@keyframes pulseBig3 {
  0% {
    -webkit-box-shadow: 0 0 0 0 #208da1;
            box-shadow: 0 0 0 0 #208da1;
  }
  50% {
    -webkit-box-shadow: 0 0 0 10px rgba(1, 93, 199, 0);
            box-shadow: 0 0 0 10px rgba(1, 93, 199, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
            box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}

/* pulseBig2 */
@-webkit-keyframes pulseBig4 {
  0% {
    -webkit-box-shadow: 0 0 0 0 #fc9ba4;
            box-shadow: 0 0 0 0 #fc9ba4;
  }
  50% {
    -webkit-box-shadow: 0 0 0 10px rgba(1, 93, 199, 0);
            box-shadow: 0 0 0 10px rgba(1, 93, 199, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
            box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}
@keyframes pulseBig4 {
  0% {
    -webkit-box-shadow: 0 0 0 0 #fc9ba4;
            box-shadow: 0 0 0 0 #fc9ba4;
  }
  50% {
    -webkit-box-shadow: 0 0 0 10px rgba(1, 93, 199, 0);
            box-shadow: 0 0 0 10px rgba(1, 93, 199, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
            box-shadow: 0 0 0 0 rgba(1, 93, 199, 0);
  }
}

.scaleUp1 {
  -webkit-animation-name: scaleUp1;
  animation-name: scaleUp1;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes scaleUp1 {
  0% {
    -webkit-transform: translateY(1);
    transform: translateY(1);
  }
  20% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  40% {
    -webkit-transform: translateY(1);
    transform: translateY(1);
  }
  80% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  100% {
    -webkit-transform: translateY(1);
    transform: translateY(1);
  }
}

@keyframes scaleUp1 {
  0% {
    -webkit-transform: translateY(1);
    transform: translateY(1);
  }
  20% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  40% {
    -webkit-transform: translateY(1);
    transform: translateY(1);
  }
  80% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
  100% {
    -webkit-transform: translateY(1);
    transform: translateY(1);
  }
}

@keyframes rail-line {
  0% {
    -webkit-transform: translate(-150px);
            transform: translate(-150px);
  }
  100% {
    -webkit-transform: translate(150px);
            transform: translate(150px);
    background: #208da1;
  }
}

@-webkit-keyframes rail-line {
  0% {
    -webkit-transform: translate(-50px);
            transform: translate(-50px);
  }
  100% {
    -webkit-transform: translate(50px);
            transform: translate(50px);
    background: #208da1;
  }
}

@keyframes type {
  0% {
    width: 0ch;
  }
  100% {
    width: 100%;
  }
}

@-webkit-keyframes type {
  0% {
    width: 0ch;
  }
  100% {
    width: 100%;
  }
}

@keyframes runs {
  0% {
    -webkit-transform: translateY(0) rotate(90deg);
            transform: translateY(0) rotate(90deg);
  }
  50% {
    -webkit-transform: translateY(300px) rotate(90deg);
            transform: translateY(300px) rotate(90deg);
  }
  100% {
    -webkit-transform: translateY(-300px) rotate(180deg);
            transform: translateY(-300px) rotate(180deg);
  }
}

@-webkit-keyframes runs {
  0% {
    -webkit-transform: translateY(0) rotate(90deg);
            transform: translateY(0) rotate(90deg);
  }
  50% {
    -webkit-transform: translateY(300px) rotate(90deg);
            transform: translateY(300px) rotate(90deg);
  }
  100% {
    -webkit-transform: translateY(-300px) rotate(180deg);
            transform: translateY(-300px) rotate(180deg);
  }
}

@keyframes zoomIncolor {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    background: #208da1;
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    background: #208da1;
    opacity: 0.8;
  }
}

@-webkit-keyframes zoomIncolor {
  0% {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
    background: #208da1;
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    background: #208da1;
    opacity: 0.8;
  }
}

@keyframes squareMove {
  0% {
    -webkit-transform: translateX(0px) rotate(0deg);
            transform: translateX(0px) rotate(0deg);
  }
  33% {
    -webkit-transform: translateY(-100px) rotate(180deg);
            transform: translateY(-100px) rotate(180deg);
  }
  66% {
    -webkit-transform: translateX(200px) rotate(-90deg);
            transform: translateX(200px) rotate(-90deg);
  }
  100% {
    -webkit-transform: translateX(0px) rotate(0deg);
            transform: translateX(0px) rotate(0deg);
  }
}

@-webkit-keyframes squareMove {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  33% {
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  66% {
    -webkit-transform: translateX(200px);
            transform: translateX(200px);
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

/*--
	-theme-btn
----------------------------------------*/
.theme_btn {
  overflow: hidden;
  color: #ffffff;
  background: #208da1;
  font-size: 16px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  line-height: 1;
  padding: 18px 35px;
  display: inline-block;
  border-radius: 40px;
  position: relative;
  z-index: 1;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.theme_btn:hover {
  color: #ffffff;
  background: #208da1;
  opacity: 0.9;
  transform: scale(1.1)!important;
box-shadow: 0px 5px 20px 0px rgb(var(--thm-color-two-rgb), 50%);
}

.border_btn {
  background: transparent;
  border: 2px solid #208da1;
  color: #208da1;
  padding: 15px 38px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.border_btn:hover, .border_btn.active {
  color: #ffffff;
  -webkit-box-shadow: 5px 15px 60px rgba(255, 114, 58, 0.3);
          box-shadow: 5px 15px 60px rgba(255, 114, 58, 0.3);
  border-color: #208da1;
  background-color:  #208da1;
}

.border_btn.active {
  border-color: #208da1;
  background-color: #208da1;
  -webkit-box-shadow: 5px 15px 60px rgba(255, 114, 58, 0.3);
          box-shadow: 5px 15px 60px rgba(255, 114, 58, 0.3);
}

.border_btn.active:hover {
  color: #208da1;
  background-color: transparent;
  -webkit-box-shadow: 0;
          box-shadow: 0;
}

.blog_btn {
  color: #1B212F;
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  border-bottom: 1px solid #1B212F;
  line-height: 1;
}

.blog_btn:hover {
  color: #208da1;
  border-color: #208da1;
}

.free_btn {
  padding: 17px 38px;
}

.custom-container-testimonial {
  max-width: 1400px;
  margin: 0 auto;
}

.sl-shape {
  position: absolute;
  z-index: 1;
}

.sl-shape.shape_01 {
  left: 8.54%;
  top: 210px;
  opacity: 0.3;
  -webkit-animation: float-bob-y infinite 5s linear;
          animation: float-bob-y infinite 5s linear;
}

@media (max-width: 767px) {
  .sl-shape.shape_01 {
    display: none;
  }
}

.sl-shape.shape_02 {
  right: 47.5%;
  top: 865px;
  -webkit-animation: float-bob-y infinite 3s linear;
          animation: float-bob-y infinite 3s linear;
}
.sl-shape.shape_02.contato {
  right: 47.5%;
  top:17%;
}

@media (max-width: 767px) {
  .sl-shape.shape_02 {
    display: none;
  }
}

.sl-shape.shape_03 {
  right: 9.21%;
  top: 825px;
  -webkit-animation: float-bob-y infinite 4s linear;
          animation: float-bob-y infinite 4s linear;
}
.sl-shape.shape_03.contato{
  top:17%;
}
@media (max-width: 767px) {
  .sl-shape.shape_03 {
    display: none;
  }
}

.sl-shape.shape_04 {
  left: 1%;
  top: 607px;
  -webkit-animation: float-bob-y infinite 5s linear;
          animation: float-bob-y infinite 5s linear;
}

@media (max-width: 767px) {
  .sl-shape.shape_04 {
    display: none;
  }
}

.sl-shape.shape_05 {
  right: 20%;
  top: 90%;
  opacity: 0.3;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .sl-shape.shape_05 {
    display: none;
  }
}

@media (max-width: 767px) {
  .sl-shape.shape_05 {
    display: none;
  }
}

.sl-shape.shape_06 {
  right: 24px;
  top: 790px;
  opacity: 0.3;
}

@media (max-width: 767px) {
  .sl-shape.shape_06 {
    display: none;
  }
}

.sl-shape.shape_07 {
  left: 20.30%;
  top: 10px;
  -webkit-animation: float-bob-x infinite 5s linear;
          animation: float-bob-x infinite 5s linear;
}

@media (max-width: 767px) {
  .sl-shape.shape_07 {
    display: none;
  }
}

.slider-img-box-2 {
  position: absolute;
  height: 500px;
  width: 487px;
  right: 0;
  top: 180px;
  z-index: 2;
}

.slider__img__box {
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider__img__box {
    text-align: center;
    overflow: hidden;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .slider__img__box {
    text-align: center;
    padding-right: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slider__img__box .img-one {
    width: 100%;
    padding-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider__img__box .img-one {
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .slider__img__box .img-one {
    padding-right: 0;
    width: 100%;
  }
}

.slider__img__box .slide-shape {
  position: absolute;
  z-index: 1;
}

.slider__img__box .slide-shape.img-two {
  right: 68px;
  bottom: -26px;
  -webkit-animation: float-bob-y infinite 4s alternate;
          animation: float-bob-y infinite 4s alternate;
}

@media (max-width: 767px) {
  .slider__img__box .slide-shape.img-two {
       /* display: none; */
    width: 34%;
    right: 3%;
    top: 69%;
  }
}

.slider__img__box .slide-shape.img-three {
  left: -50px;
  top: 53%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-animation: float-bob-y infinite 6s alternate;
          animation: float-bob-y infinite 6s alternate;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider__img__box .slide-shape.img-three {
    left: 0;
  }
}

@media (max-width: 767px) {
  .slider__img__box .slide-shape.img-three {
        /* display: none; */
    left: 2%;
    width: 42%;
    top: 68%;
  }
}

.slider__img__box .slide-shape.img-four {
  left: 0;
  bottom: -66px;
}

@media (max-width: 767px) {
  .slider__img__box .slide-shape.img-four {
    display: none;
  }
}

.slider__img__box .slide-shape.img-five {
  right: 70px;
  top: 26px;
}

@media (max-width: 767px) {
  .slider__img__box .slide-shape.img-five {
    display: none;
  }
}

.slider__img__box .slide-shape.img-seven {
  position: absolute;
  z-index: 1;
  bottom: -113px;
  right: -228px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .slider__img__box .slide-shape.img-seven {
    bottom: -150px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slider__img__box .slide-shape.img-seven {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider__img__box .slide-shape.img-seven {
    display: none;
  }
}

@media (max-width: 767px) {
  .slider__img__box .slide-shape.img-seven {
    display: none;
  }
}

.slider__img__box .slide-shape.img-eight {
  left: -29px;
  z-index: -1;
  bottom: -33px;
  -webkit-animation: rotation infinite 55s linear;
          animation: rotation infinite 55s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slider__img__box .slide-shape.img-eight {
    width: 100%;
    left: -10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider__img__box .slide-shape.img-eight {
    left: -18px;
    right: 0;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .slider__img__box .slide-shape.img-eight {
        /* display: none; */
    width: 100%;
    top: 15%;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}

.slider__content {
  position: relative;
  z-index: 8;
}

.slider__content h5 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
}

.slider__content .highlight-text {
  color: #1B212F;
  display: inline-block;
}

.slider__content .highlight-text span {
  color: #208da1;
}

.main-title {
  color: #1B212F;
  font-size: 56px;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .main-title {
    font-size: 30px;
    text-align: center;
  }
}

.vec-shape {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.vec-shape::before {
  content: '';
  position: absolute;
  background: url(../images/shape/line-border.svg) no-repeat;
  width: 366px;
  height: 99px;
  right: 0;
  top: 0;
  z-index: -1;
}

@media (max-width: 767px) {
  .vec-shape::before {
    display: none;
  }
}

.search__area {
  background-color: rgba(255, 114, 58, 0.1);
  width: 100%;
  border-radius: 40px;
}

@media (max-width: 767px) {
  .search__area {
    background-color: transparent;
  }
}

.search__area li {
  width: 33%;
}

.search__area li:last-child {
  background-color: transparent;
}

@media (max-width: 767px) {
  .search__area li {
    width: 100%;
    margin-bottom: 15px;
    background-color: rgba(255, 114, 58, 0.1);
    border-radius: 40px;
  }
}

.search__area li .search_btn {
  -webkit-transform: translateX(7px);
          transform: translateX(7px);
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .search__area li .search_btn {
    margin-left: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .search__area li .search_btn {
    margin-left: 0;
    font-size: 15px;
    padding: 29px 29px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .search__area li .search_btn {
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
}

@media (max-width: 767px) {
  .search__area li .search_btn {
    margin-left: 0;
    width: 100%;
  }
}

.widget__search {
  position: relative;
  z-index: 1;
}

.widget__search .input-form {
  position: relative;
  z-index: 1;
}

.widget__search .input-form input {
  border: 0;
  color: #707070;
  background: transparent;
  border-radius: 0;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  display: inline-block;
  position: relative;
  height: 65px;
  padding-left: 55px;
  width: 100%;
  z-index: 1;
}

.widget__search .search-icon {
  left: 0;
  border: 0;
  background: 0;
  font-size: 16px;
  position: absolute;
  left: 25px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.search_btn {
  border: 0;
  padding: 24px 41px;
}

.widget__select .nice-select {
  background: transparent;
  border: 0;
  width: 100%;
  height: 64px;
  border-radius: 0;
  line-height: 64px;
  font-size: 16px;
  font-weight: 400;
  color: #707070;
}

@media (max-width: 767px) {
  .widget__select .nice-select {
    width: 100%;
    background-color: rgba(255, 114, 58, 0.1);
    margin-bottom: 15px;
    border-radius: 40px;
  }
}

.widget__select .nice-select .list {
  width: 100%;
}

.widget__select .nice-select .list .option {
  width: 100%;
  border-radius: 0;
  background-color: #e2e7e6;
  margin-bottom: 0;
}

.widget__select .nice-select::before {
  content: '\f078';
  font-family: 'Font Awesome 5 Pro';
  color: #1B212F;
  font-size: 16px;
  display: block;
  pointer-events: none;
  position: absolute;
  left: 72px;
  -webkit-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .widget__select .nice-select::before {
    left: 10px;
  }
}

.widget__select .nice-select::after {
  display: none;
}

.widget__select .nice-select .current {
  color: #1B212F;
  padding-left: 80px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .widget__select .nice-select .current {
    padding-left: 25px;
  }
}

.slider-gradient-bg {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 114, 58, 0.07)), to(rgba(241, 77, 93, 0.01)));
  background: linear-gradient(rgba(255, 114, 58, 0.07) 0%, rgba(241, 77, 93, 0.01) 100%);
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slider__content__02 {
    padding-top: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider__content__02 {
    padding-top: 30px;
  }
}

@media (max-width: 767px) {
  .slider__content__02 {
    padding-top: 0;
    text-align: center;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slider__content__02 .main-title {
    font-size: 45px;
  }
}

.slider__content__02 .left-line {
  color: #303030;
  font-weight: 500;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.slider__content__02 .left-line::before {
  content: '';
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #208da1;
  left: 0;
  top: 16px;
  z-index: 1;
}

.slider__content__02 .search__area {
  background-color: #ffffff;
  width: 100%;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .slider__content__02 .search__area {
    background-color: transparent;
  }
}

.slider__content__02 .search__area .widget__search .input-form input {
  background: #ffffff;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.slider__content__02 .search__area .search_btn {
  border-radius: 5px;
}

@media (max-width: 767px) {
  .slider__content__02 .search__area .search_btn {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@media (max-width: 767px) {
  .slider__content__02 .search__area li {
    border-radius: 5px;
  }
}

.slider__content__02 .search__area .widget__select .nice-select {
  background-color: #ffffff;
  border-radius: 5px;
}

.slider-img-box-two {
  position: relative;
  z-index: 3;
}

.slider-img-box-two .shape-avatar-bg {
  position: absolute;
  left: 30px;
  z-index: -2;
  top: 60px;
  -webkit-animation: rotation infinite 55s linear;
          animation: rotation infinite 55s linear;
}

@media only screen and (min-width: 1601px) and (max-width: 1800px) {
  .slider-img-box-two .shape-avatar-bg {
    width: 600px;
    height: 600px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .slider-img-box-two .shape-avatar-bg {
    width: 400px;
    height: 400px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slider-img-box-two .shape-avatar-bg {
    top: 110px;
    width: 100%;
    -webkit-animation: unset;
            animation: unset;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-img-box-two .shape-avatar-bg {
    top: 110px;
    width: 80%;
  }
}



.slider-img-box-two .feature {
  color: #ffffff;
  border-radius: 20px;
  background: transparent;
  -webkit-box-shadow: 5px 15px 60px rgba(27, 33, 47, 0.6);
          box-shadow: 5px 15px 60px rgba(27, 33, 47, 0.6);
  z-index: 2;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .slider-img-box-two .feature {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slider-img-box-two .feature {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-img-box-two .feature {
    display: none;
  }
}

@media (max-width: 767px) {
  .slider-img-box-two .feature {
    display: none;
  }
}

.slider-img-box-two .feature.tag_01 {
  top: 220px;
  left: -12px;
  font-weight: 600;
  color: #ffffff;
  border-radius: 20px;
  background: transparent;
  -webkit-box-shadow: 5px 15px 60px rgba(27, 33, 47, 0.6);
          box-shadow: 5px 15px 60px rgba(27, 33, 47, 0.6);
  /* Note: currently only Safari supports backdrop-filter */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -moz--backdrop-filter: blur(10px);
  -o--backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.03);
  /* (plus shape's fill blended on top as a separate layer with 20% opacity) */
}

.slider-img-box-two .feature.tag_02 {
  right: 253px;
  top: 32px;
  font-weight: 600;
  color: #ffffff;
  border-radius: 20px;
  background: transparent;
  -webkit-box-shadow: 5px 15px 60px rgba(27, 33, 47, 0.6);
          box-shadow: 5px 15px 60px rgba(27, 33, 47, 0.6);
  /* Note: currently only Safari supports backdrop-filter */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  -o-backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.03);
  /* (plus shape's fill blended on top as a separate layer with 20% opacity) */
}

.slider-img-box-two .feature.tag_03 {
  color: #ffffff;
  border-radius: 20px;
  left: auto;
  right: -210px;
  font-weight: 600;
  bottom: 250px;
  background: transparent;
  -webkit-box-shadow: 5px 15px 60px rgba(27, 33, 47, 0.6);
          box-shadow: 5px 15px 60px rgba(27, 33, 47, 0.6);
  /* Note: currently only Safari supports backdrop-filter */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  -o-backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.03);
  /* (plus shape's fill blended on top as a separate layer with 20% opacity) */
  z-index: 2;
}

@media only screen and (min-width: 1601px) and (max-width: 1800px) {
  .slider-img-box-two .feature.tag_03 {
    right: -90px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .slider-img-box-two .feature.tag_03 {
    right: 0px;
    bottom: 100px;
  }
}

.slider-img-box-two .coures-member {
  background-color: #ffffff;
  top: 213px;
  right: -184px;
  left: auto;
  border-radius: 20px;
  background: transparent;
  -webkit-box-shadow: 5px 15px 60px rgba(27, 33, 47, 0.6);
          box-shadow: 5px 15px 60px rgba(27, 33, 47, 0.6);
  /* Note: currently only Safari supports backdrop-filter */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  -o-backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.03);
  /* (plus shape's fill blended on top as a separate layer with 20% opacity) */
  z-index: 3;
}

.slider-img-box-two .coures-member h5 {
  color: #ffffff;
}

@media only screen and (min-width: 1601px) and (max-width: 1800px) {
  .slider-img-box-two .coures-member {
    right: -100px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .slider-img-box-two .coures-member {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slider-img-box-two .coures-member {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-img-box-two .coures-member {
    display: none;
  }
}

@media (max-width: 767px) {
  .slider-img-box-two .coures-member {
    display: none;
  }
}

.slider-img-box-two .chose-img-wrapper .chose_05 {
  margin-top: 120px;
  margin-left: -37px;
}

@media only screen and (min-width: 1601px) and (max-width: 1800px) {
  .slider-img-box-two .chose-img-wrapper .chose_05 {
    margin-left: -70px;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .slider-img-box-two .chose-img-wrapper .chose_05 {
    width: 100%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slider-img-box-two .chose-img-wrapper .chose_05 {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-img-box-two .chose-img-wrapper .chose_05 {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .slider-img-box-two .chose-img-wrapper .chose_05 {
    width: 100%;
  }
}

.slider-img-box-two .chose-img-wrapper .chose_06 {
  position: absolute;
  left: -74px;
  bottom: 42px;
  z-index: 2;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-img-box-two .chose-img-wrapper .chose_06 {
    display: none;
  }
}

@media (max-width: 767px) {
  .slider-img-box-two .chose-img-wrapper .chose_06 {
    display: none;
  }
}

.slider-img-box-two .chose-img-wrapper .video-wrapper {
  position: absolute;
  z-index: 1;
  right: auto;
  left: 62px;
  bottom: 178px;
}

@media (max-width: 767px) {
  .slider-img-box-two .chose-img-wrapper .video-wrapper {
    bottom: 55px;
  }
}

.slider-img-box-two .chose-img-wrapper .video-wrapper .popup-video {
  width: 90px;
  height: 90px;
  background: transparent;
  -webkit-filter: drop-shadow(5px 15px 60px rgba(27, 33, 47, 0.6));
          filter: drop-shadow(5px 15px 60px rgba(27, 33, 47, 0.6));
  /* Note: currently only Safari supports backdrop-filter */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  -o-backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.03);
  /* (plus shape's fill blended on top as a separate layer with 19% opacity) */
}

.slider-three .sl-shape.shape_04 {
  left: 0;
  top: 511px;
}

.sl-shape.shape_s13 {
  left: 48px;
  top: 937px;
  -webkit-animation: rotation infinite 15s linear;
          animation: rotation infinite 15s linear;
  z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider__content__03 {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .slider__content__03 {
    padding: 45px 0 0 0;
  }
}

.slider__content__03 .main-title {
  font-size: 64px;
  line-height: 1.32;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider__content__03 .main-title {
    font-size: 52px;
  }
}

@media (max-width: 767px) {
  .slider__content__03 .main-title {
    font-size: 50px;
  }
}

.slider__content__03 .search__area {
  background-color: #ffffff;
  border-radius: 40px;
  max-width: 777px;
}

@media (max-width: 767px) {
  .slider__content__03 .search__area {
    background-color: transparent;
  }
}

.slider__content__03 .search__area li .search_btn {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  padding: 15px 35px;
}

@media (max-width: 767px) {
  .slider__content__03 .search__area .widget__search .input-form input {
    background-color: #ffffff;
    border-radius: 40px;
  }
}

@media (max-width: 767px) {
  .slider__content__03 .search__area .widget__select .nice-select {
    background-color: #ffffff;
  }
}

.slider-blur {
  width: 819px;
  height: 871px;
  background: #f14d5d;
  opacity: 0.03;
  filter: blur(50px);
  -webkit-filter: blur(50px);
  -moz-filter: blur(50px);
  position: absolute;
  right: 280px;
  top: 185px;
  z-index: -1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-blur {
    display: none;
  }
}

@media (max-width: 767px) {
  .slider-blur {
    display: none;
  }
}

.slider-img-area {
  position: relative;
  z-index: 1;
}

.slider-img-area .popup-video {
  width: 120px;
  height: 120px;
  line-height: 120px;
  font-size: 21px;
  position: absolute;
  bottom: 55px;
  left: 50px;
  background: #ffffff;
  color: #208da1;
}

.slider-img-area::before {
  content: '';
  position: absolute;
  background: url(../img/shape/round-dot.svg) no-repeat;
  width: 113px;
  height: 107px;
  left: -70px;
  top: 137px;
  z-index: -1;
  -webkit-animation: rotation infinite 15s linear;
          animation: rotation infinite 15s linear;
}

.slider-img-area::after {
  content: '';
  position: absolute;
  background: url(../img/shape/dot-box-4.svg) no-repeat;
  width: 139px;
  height: 132px;
  right: -93px;
  top: 30px;
  z-index: -1;
  animation: float-bob-y infinite 3s alternate-reverse;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .slider-img-area::after {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .slider-img-area::after {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-img-area::after {
    display: none;
  }
}

@media (max-width: 767px) {
  .slider-img-area::after {
    display: none;
  }
}

.slider-img-box-three {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 600px;
  border-radius: 10px;
  position: relative;
  -webkit-transform: translateY(-65px);
          transform: translateY(-65px);
  z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-img-box-three {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    min-height: 500px;
  }
}

@media (max-width: 767px) {
  .slider-img-box-three {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    min-height: 500px;
  }
}

.deal-box h2 {
  font-size: 40px;
  line-height: 1.4;
}

.deal-box h2 b {
  display: block;
}

.single-item {
    margin: 0px 14px;
    transition: all 0.7ms linear;
}
.single-item:hover{
    transform: scale(1.04);
}

.single-box {
  background-color: rgba(255, 114, 58, 0.05);
 padding: 15px 15px 0 15px;
  border-radius: 10px;
  min-height: 425px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  
}
.single-box__icon.particular{
  background:#227f9c;
}

.chose_7{
      padding-top: 225px;
    padding-bottom: 32px;
}
@media (max-width: 767px) {
  .row.mb-24{
    margin-bottom: 24px;
  }
  .chose-wrapper.text-quest{
    margin-top: 0;
  }
  .chose_7{
    padding: 30px 0px 0px 0px;
  }
  .single-box__icon{
    margin: 0px auto 24px auto;}
  .single-box {
    padding: 30px 15px;
    text-align: center;
  }
}

.single-box__icon {
  width: 83px;
  height: 83px;
  background: #208da1;
  text-align: center;
  line-height: 78px;
  display: inline-block;
  border-radius: 50%;
  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;
}

.single-box__icon img {
  display: inline-block !important;
  width: 51px;
  height: 50px;
}

.single-box.s-box2 {
  background-color: rgba(241, 77, 93, 0.05);
}

.single-box.s-box2 .single-box__icon {
  background-color: #F14D5D;
}

.single-box.s-box3 {
  background-color: rgba(142, 102, 255, 0.05);
}

.single-box.s-box3 .single-box__icon {
  background-color: #8E66FF;
}

.owl-nav {
  position: absolute;
  z-index: 2;
  left: -330px;
  bottom: 35px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .owl-nav {
    left: -288px;
    bottom: 10px;
  }
}

.owl-nav .owl-prev {
  background: transparent;
  border: 0;
  padding: 0;
  margin-right: 10px;
  cursor: pointer;
}

.owl-nav .owl-prev i {
  color: #208da1;
  font-size: 30px;
}

.owl-nav .owl-next {
  background: transparent;
  border: 0;
  padding: 0;
  margin-right: 10px;
  cursor: pointer;
}

.owl-nav .owl-next i {
  color: #208da1;
  font-size: 30px;
  opacity: 0.2;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.owl-nav .owl-next:hover i {
  opacity: 1;
}

.s-box-2 {
  padding: 30px 20px;
}

.s-box-2 .single-box__icon {
  width: 75px;
  height: 75px;
  line-height: 75px;
  float: left;
  margin-right: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .s-box-2 .single-box__icon {
    float: none;
  }
}

@media (max-width: 767px) {
  .s-box-2 .single-box__icon {
    float: none;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .s-box-2 .single-box__icon {
    float: left;
  }
}

.s-box-2 .single-box__icon img {
  width: 30px;
  height: 28px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .s-box-2 .sub-title {
    font-size: 22px;
  }
}

.s-box-2 .icon_02 {
  background-color: #F14D5D;
}

.s-box-2 .icon_03 {
  background-color: #8E66FF;
}

.sb-box-01 {
  background-color: rgba(241, 77, 93, 0.05);
}

.sb-box-02 {
  background-color: rgba(142, 102, 255, 0.05);
}

.what-blur-shape-one {
  width: 569px;
  height: 569px;
  background: #f14d5d;
  opacity: 0.05;
  filter: 50px;
  -webkit-filter: blur(50px);
  -moz-filter: blur(50px);
  position: absolute;
  left: 26%;
  z-index: -1;
  top: 170px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .what-blur-shape-one {
    display: none;
  }
}

@media (max-width: 767px) {
  .what-blur-shape-one {
    display: none;
  }
}

.what-blur-shape-two {
  width: 569px;
  height: 569px;
  background: #8e66ff;
  opacity: 0.05;
  filter: 50px;
  -webkit-filter: blur(50px);
  -moz-filter: blur(50px);
  position: absolute;
  right: 19%;
  z-index: -1;
  bottom: 133px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .what-blur-shape-two {
    display: none;
  }
}

@media (max-width: 767px) {
  .what-blur-shape-two {
    display: none;
  }
}

.what-look-bg {
  margin: 0 100px 0 100px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .what-look-bg {
    margin: 0 0 0 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .what-look-bg {
    margin: 0 0 0 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .what-look-bg {
    margin: 0 0 0 0;
  }
}

@media (max-width: 767px) {
  .what-look-bg {
    margin: 0 0 0 0;
  }
}

.what-box {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 50px 45px;
  min-height: 455px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .what-box {
    padding: 50px 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .what-box {
    padding: 50px 15px;
  }
}
.hover-bg-primary:hover .add-mochila-1{
  border-color: #ffffff;
}
.add-mochila-1{
        border: 1px solid #21849d;
    width: 100%;
    display: block;
    padding: 6px 4px;
    margin-top: 14px;
    text-align: center;
    border-radius: 51px;
    font-weight: 900;
    font-size: 0.8rem;
    color: #21849d;
    transition: all 0.4s ease-in-out;
}
.add-mochila-1:hover{
        box-shadow: 0px 5px 20px 0px rgb(var(--thm-color-two-rgb), 10%);
        transform: scale(1.05);
}
.modal-link-proposta{
    font-size: 25px;
    border-radius: 51px;
    font-weight: 900;
    color: #21849d;
    position: absolute;
    right: 30px;
    bottom: 20px;
}
.modal-link-proposta:hover{
    text-decoration: underline;
    color: #21849d;
    opacity: 0.8;
}
.add-mochila-1 img{
    width: 40px;
    margin-left: 10px;
}
@media (max-width: 767px) {

  .titulo figure{
    right: 8px;
  }
  .titulo figure img{
        max-width: 70px;
  }
  .titulo h1{
    font-size: 3rem;
  }
  .what-box {
    padding: 50px 15px;
  }
}

  .course-bg-space .section-title, 
  .what-looking-for .section-title, 
  .feature-course .section-title, 
  .testimonial-area .section-title{
    margin-bottom: 0px;
    padding-bottom:21px;
  }

.what-box__icon {
  display: inline-block;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.what-box__icon::before {
  position: absolute;
  content: '';
  width: 75px;
  height: 75px;
  background: rgba(27, 33, 47, 0.1);
  border-radius: 50%;
  left: -12px;
  bottom: 0;
  z-index: -1;
}

.what-box h3 {
  font-size: 34px;
  margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 767px) {
  .course-instructor h4.sub-title a{
        font-size: 1.2rem!important;
    display: block!important;
    display: -webkit-box!important;
    -webkit-line-clamp: inherit;
    -webkit-box-orient: inherit;
    overflow: initial!important;
    -o-text-overflow: initial!important;
    text-overflow: initial!important;
    transition: all 300ms ease-in-out;
  }
.main-slider{
  margin-bottom: 60px;
}
.slider__content .mb-40{
  margin-bottom: 15px;
}
  .course-bg-space .section-title, 
  .what-looking-for .section-title, 
  .feature-course .section-title, 
  .testimonial-area .section-title{
    margin-bottom: 0px;
    padding-bottom:0px;
  }
  .course-bg-space{
    margin-top: 30px;
  }
  .what-box h3 {
    font-size: 32px;
    line-height: 1.4;
  }
}

.what-box p {
  margin-bottom: 30px;
  min-height: 52px;
}

.what-box:hover .what-box__icon {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}

.wb-icon-2::before {
  display: none;
}

.what-blur-bg-three {
  width: 851px;
  height: 851px;
  background: #f14d5d;
  opacity: 0.03;
  filter: blur(50px);
  -webkit-filter: blur(50px);
  -moz-filter: blur(50px);
  -o-filter: blur(50px);
  position: absolute;
  left: 18%;
  top: 110px;
  z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .what-blur-bg-three {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .what-blur-bg-three {
    display: none;
  }
}

@media (max-width: 767px) {
  .what-blur-bg-three {
    display: none;
  }
}

.single-category {
    border-radius: 5px;
    background: #ffffff;
    -webkit-box-shadow: 5px 15px 30px rgba(27, 33, 47, 0.05);
    box-shadow: 5px 15px 30px rgba(27, 33, 47, 0.05);
    padding: 35px 0 5px 0;
    min-height: 336px;
}

.single-category .sub-title a {
  text-decoration: none;
}

.single-category .sub-title a:hover {
  color: #208da1;
}

.feature-blur-one {
  width: 1109px;
  height: 1109px;
  background: -webkit-gradient(linear, left top, left bottom, from(red), color-stop(0%, #fd020b), color-stop(30.95%, #d822de), color-stop(65.27%, #6051af), to(#07f6ff));
  background: linear-gradient(red 0%, #fd020b 0%, #d822de 30.95%, #6051af 65.27%, #07f6ff 100%);
  opacity: 0.03;
  -webkit-filter: blur(50px);
          filter: blur(50px);
  position: absolute;
  left: 85px;
  top: 251px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .feature-blur-one {
    display: none;
  }
}

@media (max-width: 767px) {
  .feature-blur-one {
    display: none;
  }
}

.feature-blur-two {
  width: 789px;
  height: 789px;
  background: -webkit-gradient(linear, left top, left bottom, from(red), color-stop(0%, #fd020b), color-stop(30.95%, #d822de), color-stop(65.27%, #6051af), to(#07f6ff));
  background: linear-gradient(red 0%, #fd020b 0%, #d822de 30.95%, #6051af 65.27%, #07f6ff 100%);
  opacity: 0.03;
  -webkit-filter: blur(50px);
          filter: blur(50px);
  position: absolute;
  right: -250px;
  bottom: 280px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .feature-blur-two {
    display: none;
  }
}

@media (max-width: 767px) {
  .feature-blur-two {
    display: none;
  }
}

.gf_btn {
    border: 0;
    padding: 0;
    background: 0;
    color: #208da1;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1;
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    margin: 5px;
    display: inline-block;
    position: relative;
    background-color: rgba(255, 114, 58, 0.1);
    border-radius: 40px;
    padding: 19px 39px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

@media (max-width: 767px) {
  .footer-area .element_1{
    display: none!important;
  }
  .gf_btn {
    margin: 10px 2px;
    font-size: 14px;
    padding: 19px 25px;
    width:  46%;
  }
}

.gf_btn:hover, .gf_btn.active {
  color: #ffffff;
  background-color: #208da1;
}

.gf_btn:hover::before, .gf_btn.active::before {
  width: 100%;
}

.course__tag span {
  font-size: 14px;
  display: inline-block;
  padding: 15px 22px;
  line-height: 1;
  border-radius: 40px;
}

.course__tag span:first-child {
  color: #F14D5D;
  background-color: rgba(241, 77, 93, 0.1);
}

.course__tag span:nth-child(2) {
  color: #FF9F66;
  background-color: rgba(255, 159, 102, 0.2);
}

.z-gallery {
    border-radius: 10px;
    background: #ffffff;
    -webkit-box-shadow: 5px 10px 60px rgba(27, 33, 47, 0.05);
    box-shadow: 5px 10px 60px rgba(27, 33, 47, 0.05);
    padding: 10px 10px 28px 10px;
}

@media (max-width: 767px) {
  .z-gallery {
    padding: 0;
  }
}

.z-gallery__thumb {
  overflow: hidden;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}

.z-gallery__thumb img {
  width: 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.z-gallery__thumb .feedback-tag {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  background-color: #2878EB;
  display: inline-block;
  padding: 10px 11px;
  position: absolute;
  top: 20px;
  left: 20px;
  border-radius: 5px;
  line-height: 1;
}

.z-gallery__thumb .heart-icon {
  color: #208da1;
  font-size: 15px;
  background-color: #ffffff;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-radius: 5px;
  position: absolute;
  right: 20px;
  top: 20px;
  text-align: center;
  line-height: 30px;
  z-index: 1;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.z-gallery__thumb .heart-icon:hover {
  color: #2878EB;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.z-gallery__content {
    padding-bottom: 0;
    height: 200px;
}
.z-gallery__content .sub-title {
  line-height: 1.4;
  font-weight: 700;

}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .z-gallery__content .sub-title {
    font-size: 20px;
  }
}
/* #servicosHome .single-item p{
      display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
} */

.z-gallery__content .sub-title a {
  text-decoration: none;
      display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.z-gallery:hover .z-gallery__thumb img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.z-gallery:hover .z-gallery__content .sub-title a {
  color: #208da1;
}

.course__meta span {
  color: #1B212F;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  margin-right: 20px;
}
  .course__meta span.preco{
    color: #FF5722;
  }
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .course__meta span {
       font-size: 13px;
    margin-right: 4px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .course__meta span {
    margin-bottom: 10px;
  }
}

@media (max-width: 767px) {
  .course__meta span {
    font-size: 14px;
    margin-right: 5px;
    margin-bottom: 10px;
  }
}

.course__meta span {
  color: #208da1;
  font-weight: 600;
  margin-right: 0;
}

.course__meta span img {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  margin-right: 5px;
}

@media (max-width: 767px) {
  .course__cat__list {
    text-align: center;
    margin: 0 auto;
  }
}

.course__cat__list li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 10px 4px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.course__cat__list li a {
  color: #1B212F;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  display: inline-block;
  border: 2px solid rgba(27, 33, 47, 0.08);
  border-radius: 5px;
  padding: 19px 48px;
  width: 100%;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .course__cat__list li a {
    padding: 15px 35px;
  }
}

@media (max-width: 767px) {
  .course__cat__list li a {
    font-size: 18px;
    padding: 19px 20px;
    width: 280px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .course__cat__list li a {
    width: unset;
  }
}

.course__cat__list li a span {
  margin-right: 20px;
}

.course__cat__list li a span [class*="icon-"] {
  max-height: 44px;
}

@media (max-width: 767px) {
  .course__cat__list li a span {
    margin-right: 10px;
  }
}

.course__cat__list li a svg:hover {
  fill: #ffffff;
}

.course__cat__list li a .icon-01 {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.course__cat__list li a .icon-02 {
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
  display: none;
}

.course__cat__list li a .arrow-box {
  margin-right: 0;
}

.course__cat__list li a .arrows-icon {
  margin-left: 30px;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (max-width: 767px) {
  .course__cat__list li a .arrows-icon {
    margin-left: 10px;
  }
}

.course__cat__list li a .arrows-icon-white {
  margin-left: 30px;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  visibility: hidden;
  display: none;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.course__cat__list li a:hover, .course__cat__list li a.active {
  color: #ffffff;
  border-color: #208da1;
  background-color: #208da1;
}

.course__cat__list li a:hover .icon-01, .course__cat__list li a.active .icon-01 {
  -webkit-transform: scale(0);
          transform: scale(0);
  display: none;
  opacity: 0;
  visibility: hidden;
}

.course__cat__list li a:hover .icon-02, .course__cat__list li a.active .icon-02 {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
          transform: scale(1);
  display: inline-block;
}

.course__cat__list li a:hover .arrows-icon-white, .course__cat__list li a.active .arrows-icon-white {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  opacity: 1;
  visibility: visible;
  display: inline-block;
}

.course__cat__list li a:hover .arrows-icon, .course__cat__list li a.active .arrows-icon {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  display: none;
}

.portfolio-menu-two .gf_btn {
  margin: 0px 3px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .portfolio-menu-two .gf_btn {
    margin: 0px 1px;
    padding: 19px 29px;
  }
}

@media (max-width: 767px) {
  .portfolio-menu-two .gf_btn {
    margin-bottom: 10px;
  }
}

.z-gallery-two .z-gallery__content {
  padding: 0 5px 30px 5px;
}

@media (max-width: 767px) {
  .z-gallery-two .z-gallery__content {
    padding: 0 15px 30px 15px;
  }
  .z-gallery__content{
    padding: 0 10px 30px 10px;
    height: auto;
  }
}

.z-gallery__content .price-tag {
  color: #ffffff;
  text-align: center;
  line-height: 70px;
  position: absolute;
  background: #208da1;
  font-size: 18px;
  font-weight: 600;
  width: 70px;
  height: 70px;
  display: inline-block;
  border-radius: 50%;
  top: -57px;
  right: 20px;
  z-index: 2;
}

.course__tag__two span {
  border-radius: 5px;
  margin-right: 5px;
}

.course__authors p {
  color: #505050;
  border-left: 1px solid rgba(27, 33, 47, 0.1);
  padding-left: 33px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .course__authors p {
    padding-left: 25px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .course__authors p {
    margin-top: 10px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .course__authors p {
    margin-top: 10px;
  }
}

@media (max-width: 767px) {
  .course__authors p {
    margin-top: 10px;
  }
}

.course__authors p span {
  color: #208da1;
}

.course__authors-box-text h5 {
  font-weight: 600;
}

.course__authors-box-text span {
  font-size: 14px;
}

.online__course__cat .courses_link {
  text-align: center;
  border-radius: 5px;
  background: #ffffff;
  -webkit-box-shadow: 5px 15px 60px rgba(27, 33, 47, 0.05);
          box-shadow: 5px 15px 60px rgba(27, 33, 47, 0.05);
  padding: 40px 20px;
}

.online__course__cat .courses_link .icon-01 {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 62px;
}

.online__course__cat .courses_link .arrows-icon {
  -webkit-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}

.online__course__cat .courses_link .arrows-icon:hover {
  -webkit-transform: rotateY(360deg);
          transform: rotateY(360deg);
}

.online__course__cat .courses_link:hover .icon-01 {
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
}

.gallery-03 {
  padding: 0;
  position: relative;
  z-index: 1;
}

.gallery-03 .z-gallery__thumb .heart-icon {
  top: 20px;
  right: 30px;
  line-height: 32px;
}

.gallery-03 .z-gallery__content {
  padding: 0 30px 25px 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .gallery-03 .z-gallery__content {
    padding: 0 10px 25px 10px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .gallery-03 .z-gallery__content {
    padding: 0 20px 25px 20px;
  }
}

@media (max-width: 767px) {
  .gallery-03 .z-gallery__content {
    padding: 0 15px 25px 15px;
  }
}

.gallery-03 .z-gallery__content .course__meta span {
  color: #303030;
  font-size: 14px;
}

.gallery-03 .z-gallery__content .feedback-tag {
  border-top: 1px solid rgba(27, 33, 47, 0.1);
}

.gallery-03 .z-gallery__content .feedback-tag span {
  color: #208da1;
  font-size: 14px;
  line-height: 1;
}

.gallery-03 .z-gallery__content .feedback-tag span b {
  font-weight: 400;
  color: #707070;
}

.gallery-03 .z-gallery__content .feedback-tag .read_more {
  color: #1B212F;
  font-weight: 500;
  font-size: 14px;
  text-decoration: underline;
}

.gallery-03 .z-gallery__content .feedback-tag .read_more:hover {
  color: #208da1;
}

.research-tag {
  position: absolute;
  top: 20px;
  left: 30px;
  z-index: 2;
}

.research-tag span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
  background: #2878EB;
  border-radius: 5px;
  padding: 11px 13px;
  margin-right: 10px;
}

.research-tag span:last-child {
  background-color: #F14D5D;
}

.courses-details-wrapper h5 {
  color: #707070;
  font-weight: 500;
  margin-bottom: 20px;
}

.courses-title {
  font-size: 32px;
}

.course-details-img {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 5px;
  min-height: 464px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.course-details-img .popup-video {
  width: 70px;
  height: 70px;
  line-height: 71px;
  background-color: #ffffff;
  color: #208da1;
  font-size: 13px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
}

.courses-tag-btn a {
  color: #1B212F;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  border: 1px solid rgba(112, 112, 112, 0.2);
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  margin-right: 8px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (max-width: 767px) {
  .courses-tag-btn a {
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
    margin-right: 2px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .courses-tag-btn a {
    margin-bottom: 10px;
    width: unset;
    text-align: unset;
  }
}

.courses-tag-btn a:hover {
  color: #ffffff;
  border-color: #208da1;
  background-color: #208da1;
}

.price-list h5 {
  color: #707070;
  font-size: 20px;
  font-weight: 600;
}

.price-list h5 span {
  text-decoration: line-through;
}

.price-list .sub-title {
  color: #1B212F;
  font-weight: 700;
  margin-left: 10px;
}

.courses-cart-video .popup-video {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 11px;
  background-color: #2878EB;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.courses-cart-video .popup-video:hover {
  background-color: #208da1;
}

.cart-list-tag li {
  display: inline-block;
  margin-right: 10px;
}

@media (max-width: 767px) {
  .cart-list-tag li {
    display: block;
    margin-bottom: 10px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cart-list-tag li {
    margin-bottom: 0;
  }
}

.learn-box h5 {
  color: #1B212F;
  font-size: 20px;
  border-bottom: 1px solid rgba(164, 157, 157, 0.2);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.learn-list {
  overflow-y: scroll;
  height: 440px;
  margin-right: 20px;
  /* Handle */
}

@media (max-width: 767px) {
  .learn-list {
    margin-right: 5px;
  }
}

.learn-list ::-webkit-scrollbar-thumb {
  background: #707070;
}

.learn-list li {
  margin-bottom: 25px;
  padding-right: 55px;
}

@media (max-width: 767px) {
  .learn-list li {
    padding-right: 5px;
  }
}

.learn-list li a {
  color: #505050;
  font-size: 16px;
  line-height: 1;
  display: block;
}

@media (max-width: 767px) {
  .learn-list li a {
    font-size: 15px;
  }
}

.learn-list li a .play-video {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  display: inline-block;
  margin-right: 8px;
}

@media (max-width: 767px) {
  .learn-list li a .play-video {
    margin-right: 1px;
  }
}

.learn-list li a .play-video i {
  color: #1B212F;
  font-size: 20px;
  margin-right: 3px;
}

.seller-rating li:first-child {
  margin-right: 20px;
}

.seller-rating li:last-child {
  margin-left: 90px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .seller-rating li:last-child {
    margin-left: 5px;
  }
}

@media (max-width: 767px) {
  .seller-rating li:last-child {
    margin-left: 5px;
  }
}

.seller-rating li .theme_btn {
  padding: 15px 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .seller-rating li .star-icon a {
    font-size: 16px;
  }
}

.project-details h5 {
  color: #2878EB;
  font-weight: 500;
}

.project-details h5 span {
  color: #1B212F;
  margin-right: 20px;
}

.date-lang span {
  color: #1B212F;
  font-weight: 500;
}

@media (max-width: 767px) {
  .date-lang span {
    font-size: 15px;
  }
}

.date-lang span:first-child {
  margin-right: 45px;
}

@media (max-width: 767px) {
  .date-lang span:first-child {
    margin-right: 5px;
  }
}

.date-lang span b {
  color: #000;
}

.teachers-content {
  overflow: hidden;
}

.teachers-content .teacher_01 {
  float: left;
  margin-right: 24px;
}

.teachers-content__text {
  overflow: hidden;
  margin-top: 15px;
}

.teachers-content__text h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.teachers-content__text p {
  color: #2878EB;
}

@media (max-width: 767px) {
  .project-box img {
    width: 100%;
  }
}

.skill-area .courses-tag-btn a {
  padding: 14px 30px;
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .skill-area .courses-tag-btn a {
    padding: 18px 24px;
  }
}

.courses-ingredients {
  border-radius: 5px;
  background-color: #ffffff;
  -webkit-box-shadow: 5px 15px 60px rgba(27, 33, 47, 0.05);
          box-shadow: 5px 15px 60px rgba(27, 33, 47, 0.05);
  padding: 30px 35px 10px 35px;
  margin-left: 75px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .courses-ingredients {
    padding: 30px 15px 10px 15px;
    margin-left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .courses-ingredients {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .courses-ingredients {
    padding: 30px 15px 10px 15px;
    margin-left: 0;
  }
}

.courses-item li {
  color: #1B212F;
  font-size: 18px;
  margin-bottom: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .courses-item li {
    font-size: 16px;
  }
}

.courses-item li img {
  margin-right: 12px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .why-chose-section-wrapper {
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .why-chose-section-wrapper {
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .why-chose-section-wrapper {
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  .why-chose-section-wrapper {
    margin-left: 0;
    margin-right: 0;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .why-chose-us {
    margin-right: 0;
    margin-left: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .why-chose-us {
    margin-right: 0;
    margin-left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .why-chose-us {
    margin-right: 0;
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .why-chose-us {
    margin-right: 0;
    margin-left: 0;
  }
}

.text-list li {
  color: #1B212F;
  font-weight: 500;
  padding-left: 35px;
  margin-bottom: 23px;
  position: relative;
  z-index: 1;
}

.text-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 5 pro';
  font-size: 12px;
  color: #ffffff;
  position: absolute;
  width: 25px;
  height: 25px;
  background-color: #8E66FF;
  display: inline-block;
  border-radius: 50%;
  z-index: 1;
  left: 0;
  top: 0;
  text-align: center;
  line-height: 25px;
}

.text-list li:nth-child(2)::before {
  background-color: #208da1;
}

.text-list li:last-child::before {
  background-color: #F14D5D;
}

.chose-img-wrapper .chose {
  position: absolute;
}

.chose-img-wrapper .chose.chose_06 {
  bottom: -70px;
  right: 40px;
  z-index: -2;
  -webkit-animation: float-bob-y infinite 5s linear;
          animation: float-bob-y infinite 5s linear;
}

@media (max-width: 767px) {
  .chose-img-wrapper .chose.chose_06 {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .chose-img-wrapper .chose_05 {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .chose-img-wrapper .chose_05 {
    width: 100%;
    padding-left: 0;
  }
}

.chose-img-wrapper .video-wrapper {
  position: absolute;
  z-index: 1;
  right: 82px;
  bottom: 133px;
}

.chose-img-wrapper .video-wrapper .popup-video {
  color: #208da1;
  width: 90px;
  height: 90px;
  line-height: 90px;
  background: #ffffff;
  -webkit-filter: drop-shadow(5px 15px 60px rgba(27, 33, 47, 0.1));
          filter: drop-shadow(5px 15px 60px rgba(27, 33, 47, 0.1));
}

.coures-member {
  width: 257px;
  background: #ffffff;
  -webkit-box-shadow: 5px 15px 60px rgba(27, 33, 47, 0.1);
          box-shadow: 5px 15px 60px rgba(27, 33, 47, 0.1);
  display: inline-block;
  padding: 20px 30px 20px 20px;
  border-radius: 20px;
  position: absolute;
  top: 360px;
  left: -32px;
  z-index: 2;
}

@media (max-width: 767px) {
  .coures-member {
    display: none;
  }
}

.coures-member h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.coures-member span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  background: #208da1;
  width: 60px;
  height: 60px;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  line-height: 60px;
  position: absolute;
  right: 20px;
  z-index: 7;
}

.coures-member .choses {
  border-radius: 50%;
  border: 1px solid #ffffff;
}

.coures-member .choses.chose_02 {
  -webkit-transform: translateX(-25px);
          transform: translateX(-25px);
  position: relative;
  z-index: 3;
}

.coures-member .choses.chose_03 {
  -webkit-transform: translateX(-50px);
          transform: translateX(-50px);
  position: relative;
  z-index: 4;
}

.coures-member .choses.chose_04 {
  position: absolute;
  right: 55px;
  z-index: 6;
}

.feature {
  border-radius: 20px;
  background: #ffffff;
  -webkit-box-shadow: 5px 15px 60px rgba(27, 33, 47, 0.1);
          box-shadow: 5px 15px 60px rgba(27, 33, 47, 0.1);
  font-size: 20px;
  color: #1B212F;
  font-weight: 600;
  display: inline-block;
  padding: 20px 30px 20px 20px;
  position: absolute;
  z-index: 1;
}

@media (max-width: 767px) {
  .feature {
    display: none;
  }
}

.feature span {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  line-height: 50px;
  background-color: #208da1;
  margin-right: 23px;
}

.feature span i {
  color: #ffffff;
}

.feature.tag_01 {
  top: 100px;
  left: 0;
  font-weight: 600;
}

.feature.tag_01 span {
  background-color: #F14D5D;
}

.feature.tag_02 {
  right: 10px;
  top: 152px;
  font-weight: 600;
}

.feature.tag_02 span {
  background-color: #8E66FF;
}

.feature.tag_03 {
  left: 128px;
  bottom: -60px;
  font-weight: 600;
}

.feature.tag_03 span {
  background-color: #41C485;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .feature.tag_03 {
    bottom: 0;
  }
}

@media (max-width: 767px) {
  .feature.tag_03 {
    display: none;
  }
}

.why-chose-blur-bg {
  width: 833px;
  height: 833px;
  background: #f14d5d;
  opacity: 0.03;
  filter: blur(50px);
  position: absolute;
  -webkit-filter: blur(50px);
  -moz-filter: blur(50px);
  -o-filter: blur(50px);
  left: 27%;
  top: 325px;
  z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .why-chose-blur-bg {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .why-chose-blur-bg {
    display: none;
  }
}

@media (max-width: 767px) {
  .why-chose-blur-bg {
    display: none;
  }
}

.img-bg::before {
  content: '';
  position: absolute;
  width: 450px;
  height: 479px;
  background-color: #208da1;
  border-radius: 40px;
  left: 63px;
  top: auto;
  bottom: 0;
  z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .img-bg::before {
    width: 100%;
    left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .img-bg::before {
    width: 100%;
    left: 0;
  }
}

@media (max-width: 767px) {
  .img-bg::before {
    display: none;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .text-list-box li {
    float: left;
    width: 31%;
    margin: 0 10px;
  }
}

.text-list-box li .single-box {
  background: #ffffff;
  -webkit-box-shadow: 5px 15px 60px rgba(27, 33, 47, 0.03);
          box-shadow: 5px 15px 60px rgba(27, 33, 47, 0.03);
}

.chose-img-wrapper-03.chose-img-full {
  width: 650px;
  min-height: 750px;
  margin-left: 75px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .chose-img-wrapper-03.chose-img-full {
    width: 100%;
    margin-left: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .chose-img-wrapper-03.chose-img-full {
    margin-left: 0;
    width: 100%;
    min-height: 550px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chose-img-wrapper-03.chose-img-full {
    margin-left: 0;
    width: 100%;
    min-height: 450px;
  }
}

@media (max-width: 767px) {
  .chose-img-wrapper-03.chose-img-full {
    margin-left: 0;
    width: 100%;
    min-height: 400px;
  }
}

.chose-img-wrapper-03 .feature {
  width: 277px;
  max-width: 100%;
  border-radius: 3px;
  padding: 25px 25px 25px 30px;
}

.chose-img-wrapper-03 .feature span {
  position: absolute;
  left: -15px;
  top: -15px;
  z-index: 2;
}

.chose-img-wrapper-03 .feature h5 {
  color: #1B212F;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.chose-img-wrapper-03 .feature p {
  color: #707070;
  font-size: 14px;
}

.chose-img-wrapper-03 .feature.tag_01 {
  top: -70px;
  left: 179px;
  font-weight: 600;
  -webkit-animation: float-bob-x infinite 5s linear;
          animation: float-bob-x infinite 5s linear;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .chose-img-wrapper-03 .feature.tag_01 {
    top: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chose-img-wrapper-03 .feature.tag_01 {
    top: 0;
  }
}

@media (max-width: 767px) {
  .chose-img-wrapper-03 .feature.tag_01 {
    top: 0;
  }
}

.chose-img-wrapper-03 .feature.tag_03 {
  left: -75px;
  bottom: 30px;
  -webkit-animation: float-bob-y infinite 5s linear;
          animation: float-bob-y infinite 5s linear;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .chose-img-wrapper-03 .feature.tag_03 {
    left: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .chose-img-wrapper-03 .feature.tag_03 {
    left: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chose-img-wrapper-03 .feature.tag_03 {
    left: 0;
  }
}

@media (max-width: 767px) {
  .chose-img-wrapper-03 .feature.tag_03 {
    left: 0;
  }
}

.chose-img-wrapper-03 .feature.tag_03 span {
  background-color: #8e66ff;
}

.chose-round-bg {
  position: relative;
  z-index: 1;
}

.chose-round-bg::before {
  content: '';
  position: absolute;
  background-color: #208da1;
  width: 526px;
  height: 526px;
  border-radius: 50%;
  right: 190px;
  top: 106px;
  z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .chose-round-bg::before {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .chose-round-bg::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .chose-round-bg::before {
    display: none;
  }
}

.course-blur-shape {
  width: 569px;
  height: 569px;
  background: #8e66ff;
  opacity: 0.05;
  -webkit-filter: 50px;
          filter: 50px;
  position: absolute;
  -webkit-filter: blur(50px);
  right: 13%;
  top: 150px;
}

  .course-instructor h4 span{
    font-size: 1.2rem;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    transition: all 300ms ease-in-out;
  }
  .course-instructor h4{
    height: 100px;
  }

  .course-instructor h4 a:hover{
     display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
  }
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .course-blur-shape {
    display: none;
  }
}

@media (max-width: 767px) {
  .course-blur-shape {
    display: none;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .course-instructor {
    margin: 0 0 0 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .course-instructor {
    margin: 0 0 0 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .course-instructor {
    margin: 0 0 0 0;
  }
}

@media (max-width: 767px) {
  .course-instructor {
    margin: 0 0 0 0;
  }
}

.z-instructors__thumb {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.z-instructors__thumb img {
  width: 100%;
}

.z-instructors__thumb .social-media {
  position: absolute;
  z-index: 1;
  bottom: 0;
  width: 100%;
  padding: 27px 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .z-instructors__thumb .social-media {
    padding: 27px 10px;
  }
}

.z-instructors__thumb .social-media a {
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
}

.z-instructors__thumb .social-media a:first-child {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.z-instructors__thumb .social-media a:nth-child(2) {
  -webkit-transition: all 0.6s ease 0s;
  transition: all 0.6s ease 0s;
}

.z-instructors__thumb .social-media a:nth-child(3) {
  -webkit-transition: all 0.9s ease 0s;
  transition: all 0.9s ease 0s;
}

.z-instructors__thumb .social-media a:last-child {
  -webkit-transition: all 1.2s ease 0s;
  transition: all 1.2s ease 0s;
}

.z-instructors__thumb .social-media a:hover {
  color: #ffffff;
  background-color: #208da1;
}

.z-instructors:hover .social-media {
  border-radius: 5px;
  background: transparent;
  /* Note: currently only Safari supports backdrop-filter */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.05);
  /* (plus shape's fill blended on top as a separate layer with 5% opacity) */
}

.z-instructors:hover .social-media a {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.social-media a {
  color: #208da1;
  font-size: 19px;
  background-color: #ffffff;
  width: 45px;
  height: 45px;
  display: inline-block;
  margin: 0 5px;
  text-align: center;
  line-height: 45px;
  border-radius: 50%;
}

@media (max-width: 767px) {
  .social-media a {
    width: 40px;
    height: 40px;
    margin: 0 3px;
    line-height: 40px;
  }
}

.nav-style-two .owl-nav {
  position: absolute;
  z-index: 2;
  left: auto;
  bottom: auto;
  top: -120px;
  right: 55px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .nav-style-two .owl-nav {
    left: 0;
    bottom: 0;
    top: auto;
    right: 0;
    margin: 0 auto;
    text-align: center;
  }
}

@media (max-width: 767px) {
  .nav-style-two .owl-nav {
    left: 0;
    bottom: 0;
    top: auto;
    right: 0;
    margin: 0 auto;
    text-align: center;
  }
}

.nav-style-two .owl-nav button.owl-prev,
.nav-style-two .owl-nav button.owl-next {
  color: #ffffff;
  width: 60px;
  height: 60px;
  background: #208da1;
  border-radius: 50%;
  text-align: center;
  line-height: 65px;
  display: inline-block;
  position: absolute;
  z-index: 1;
}

.nav-style-two .owl-nav button.owl-prev i,
.nav-style-two .owl-nav button.owl-next i {
  color: #ffffff;
  font-size: 18px;
}

.nav-style-two .owl-nav button.owl-prev:hover,
.nav-style-two .owl-nav button.owl-next:hover {
  background-color: rgba(255, 114, 58, 0.2);
}

.nav-style-two .owl-nav button.owl-prev:hover i,
.nav-style-two .owl-nav button.owl-next:hover i {
  color: #208da1;
}

.nav-style-two .owl-nav .owl-prev {
  right: 0;
  background-color: rgba(255, 114, 58, 0.2) !important;
}

.nav-style-two .owl-nav .owl-prev i {
  color: #208da1 !important;
}

.nav-style-two .owl-nav .owl-prev:hover {
  background-color: #208da1 !important;
}

.nav-style-two .owl-nav .owl-prev:hover i {
  color: #ffffff !important;
}

.nav-style-two .owl-nav .owl-next i {
  color: #ffffff !important;
  opacity: 1 !important;
}

.nav-style-two .owl-nav .owl-next:hover i {
  color: #208da1 !important;
  opacity: 1 !important;
}

.nav-style .owl-nav {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: auto;
}

.z-instructors-02 .z-instructors__content {
  background: #208da1;
  padding: 70px 0 25px 0;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -194px;
  opacity: 0;
  visibility: hidden;
  z-index: 2;
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
}

.z-instructors-02 .z-instructors__content .semi-title {
  color: #ffffff;
}

.z-instructors-02 .z-instructors__content p {
  color: #ffffff;
  margin-bottom: 10px;
}

.z-instructors-02 .z-instructors__content p span {
  border-left: 1px solid #ffffff;
  padding-left: 15px;
  margin-left: 15px;
}

.z-instructors-02 .z-instructors__content .social-media a {
  color: #ffffff;
  font-size: 19px;
  background-color: transparent;
  width: unset;
  height: unset;
  margin: 0 12px;
}

.z-instructors-02 .z-instructors__content .social-media a:hover {
  color: #2878EB;
}

.z-instructors-02:hover .social-media {
  background-color: transparent;
}

.z-instructors-02:hover .z-instructors__content {
  opacity: 1;
  visibility: visible;
  bottom: 30px;
}

.nav-style-three .owl-nav {
  left: 0;
  right: 0;
  top: 39%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .nav-style-three .owl-nav {
    display: none;
  }
}

.nav-style-three .owl-nav .owl-prev {
  left: -90px;
  background-color: rgba(255, 114, 58, 0.2);
}

.nav-style-three .owl-nav .owl-prev:hover {
  background-color: rgba(255, 114, 58, 0.2);
}

.nav-style-three .owl-nav .owl-prev:hover i {
  color: #ffffff;
}

.nav-style-three .owl-nav .owl-next {
  left: auto;
  right: -90px;
}

.instructor-profile-img {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 582px;
  border-radius: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .instructor-profile-img {
    min-height: 450px;
  }
}

@media (max-width: 767px) {
  .instructor-profile-img {
    min-height: 400px;
  }
}

.instructor-profile h2 {
  font-size: 32px;
  border-bottom: 1px solid rgba(164, 157, 157, 0.2);
  padding-bottom: 25px;
  margin-bottom: 40px;
}

.instructor-profile .star-icon a {
  color: #208da1;
  font-size: 25px;
}

.profile-list {
  overflow: hidden;
}

.profile-list li {
  font-size: 18px;
  float: left;
  width: 48%;
  margin-bottom: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .profile-list li {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .profile-list li {
    width: 100%;
  }
}

.profile-list li span {
  color: #1B212F;
}

.profile-list .social-media a {
  font-size: 15px;
  background-color: rgba(255, 114, 58, 0.1);
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 2px;
  line-height: 30px;
}

.profile-list .social-media a:hover {
  color: #ffffff;
  background-color: #208da1;
}

.work-progress li {
  display: inline-block;
  margin-right: 40px;
}

.work-progress li:last-child {
  margin-right: 0;
}

@media (max-width: 767px) {
  .work-progress li {
    margin-right: 0;
    margin: 0 10px;
  }
}

.chart1 {
  position: relative;
  z-index: 1;
  display: inline-block;
}

.progress-content {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.progress-content h6 {
  color: #1B212F;
  font-size: 16px;
}

.progress-content b {
  font-size: 16px;
  color: #1B212F;
}

.total-stu {
  border-top: 1px solid rgba(164, 157, 157, 0.2);
}



.total-stu img {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  margin-right: 5px;
}

.testimonia-active .owl-carousel .owl-stage-outer {
  padding: 50px 100px;
}

.testimonial-authors__avatar {
  width: 85px;
  height: 85px;
  float: left;
  display: inline-block;
  margin-right: 15px;
}

.testimonial-authors__avatar img {
  display: inline-block;
}

@media (max-width: 767px) {
  .testimonial-authors__avatar {
    float: none;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-authors__avatar {
    float: left;
  }
}

.testimonial-authors__content {
  overflow: hidden;
}

.testimonial-authors__content .sub-title {
  font-weight: 500;
}

.testimonial-authors__content p {
  color: #208da1;
  font-weight: 500;
}

.testimonial-wrapper {
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 25px 30px 25px 30px;
  margin: 25px 0px 50px 0px;
}

.testimonial-wrapper .quote-icon {
  display: inline-block;
}

.testimonial-wrapper .quote-icon img {
  width: 42px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-wrapper {
    padding: 25px 10px 25px 20px;
  }
}

@media (max-width: 767px) {
  .testimonial-wrapper {
    padding: 25px 10px 25px 15px;
  }
}

.testimonial-pad .testimonial-wrapper {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid rgba(0, 0, 0, 0.09);

}

.slick-dots {
  position: absolute;
  z-index: 7;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  bottom: -30px;
}

.slick-dots li {
  display: inline-block;
  margin: 0 3px;
}

.slick-dots li button {
  text-indent: -10000px;
  padding: 0;
  background: 0;
  border: 2px solid #208da1 !important;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 3px;
}

.slick-dots li.active button {
  background-color: #208da1;
}

.owl-dots {
  position: absolute;
  z-index: 7;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  bottom: 0;
}

.owl-dots .owl-dot {
  padding: 0;
  background: 0;
  border: 2px solid #208da1 !important;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin: 0 3px;
}

.owl-dots .owl-dot.active {
  background-color: #208da1;
}

.testimonial-bg {
  background: url(../img/testimonial/map-dot.png) no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  height: 100%;
}

.test-wrapper-full {
  -webkit-box-shadow: none;
          box-shadow: none;
  padding-right: 55px;
  padding-left: 55px;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .test-wrapper-full {
    padding-right: 0;
    padding-left: 0;
    margin: 30px 0px 60px 0px;
  }
}

.test-wrapper-full h5 {
  font-size: 20px;
  line-height: 1.7;
  font-weight: 400;
}

@media (max-width: 767px) {
  .test-wrapper-full h5 {
    font-size: 18px;
  }
}

.test-wrapper-full .testimonial-authors__content p {
  color: #707070;
}

.testimonial-authors-img-list {
  height: 300px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-authors-img-list {
    display: none;
  }
}

@media (max-width: 767px) {
  .testimonial-authors-img-list {
    display: none;
  }
}

.testimonial-authors-img-list .testi {
  position: absolute;
}

.testimonial-authors-img-list .testi.t-img-01 {
  left: 221px;
  top: 0;
}

.testimonial-authors-img-list .testi.t-img-02 {
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 20px;
}

.testimonial-authors-img-list .testi.t-img-03 {
  right: 250px;
  top: 20px;
}

.testimonial-authors-img-list .testi.t-img-04 {
  left: 40px;
  top: 180px;
}

.testimonial-authors-img-list .testi.t-img-05 {
  left: 368px;
  top: 135px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .testimonial-authors-img-list .testi.t-img-05 {
    left: 300px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-authors-img-list .testi.t-img-05 {
    left: 200px;
  }
}

.testimonial-authors-img-list .testi.t-img-06 {
  right: 380px;
  top: 170px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .testimonial-authors-img-list .testi.t-img-06 {
    right: 310px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-authors-img-list .testi.t-img-06 {
    right: 210px;
  }
}

.testimonial-authors-img-list .testi.t-img-08 {
  right: 40px;
  top: 147px;
}

.nav-style-chevron .owl-nav {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}

.nav-style-chevron .owl-nav button.owl-prev,
.nav-style-chevron .owl-nav button.owl-next {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: inline-block;
  background-color: #208da1;
  line-height: 60px;
  position: absolute;
}

.nav-style-chevron .owl-nav button.owl-prev i,
.nav-style-chevron .owl-nav button.owl-next i {
  color: #ffffff;
  font-size: 20px;
}

.nav-style-chevron .owl-nav .owl-prev {
  left: -85px;
  top: 50px;
  background-color: rgba(255, 114, 58, 0.15) !important;
}

.nav-style-chevron .owl-nav .owl-prev i {
  color: #208da1 !important;
}

.nav-style-chevron .owl-nav .owl-prev:hover {
  background-color: #208da1 !important;
}

.nav-style-chevron .owl-nav .owl-prev:hover i {
  color: #ffffff !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .nav-style-chevron .owl-nav .owl-prev {
    left: -30px;
  }
}

.nav-style-chevron .owl-nav .owl-next {
  top: 50px;
  left: auto;
  right: -85px !important;
  background-color: rgba(255, 114, 58, 0.2);
}

.nav-style-chevron .owl-nav .owl-next i {
  color: #ffffff !important;
  opacity: 1 !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .nav-style-chevron .owl-nav .owl-next {
    right: -30px !important;
  }
}

.nav-style-chevron .owl-nav .owl-next:hover {
  background-color: rgba(255, 114, 58, 0.15) !important;
}

.nav-style-chevron .owl-nav .owl-next:hover i {
  color: #208da1 !important;
}

.instructor-blur {
  width: 583px;
  height: 624px;
  background: #f14d5d;
  opacity: 0.05;
  filter: blur(50px);
  -webkit-filter: blur(50px);
  -moz-filter: blur(50px);
  -o-filter: blur(50px);
  position: absolute;
  left: 18%;
  top: 130px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .instructor-blur {
    display: none;
  }
}

@media (max-width: 767px) {
  .instructor-blur {
    display: none;
  }
}

.test-wrapper-3 {
  padding: 47px 30px 13px 30px;
  margin-top: 50px;
}

@media (max-width: 767px) {
  .test-wrapper-3 {
    padding: 47px 15px 13px 15px;
    margin: 50px 1px 60px 1px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .test-wrapper-3 {
    padding: 47px 15px 13px 15px;
    margin: 50px 10px 60px 10px;
  }
}

.test-wrapper-3 .quote-icon {
  display: inline-block;
  position: absolute;
  right: 50px;
  top: 15px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .test-wrapper-3 .testimonial-authors__content .sub-title {
    font-size: 22px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .test-wrapper-3 .testimonial-authors__content .sub-title {
    font-size: 20px;
  }
}

@media (max-width: 767px) {
  .test-wrapper-3 .testimonial-authors__content .sub-title {
    font-size: 20px;
  }
}

.star-icon a {
  color: #FDC25C;
  font-size: 15px;
  margin-right: 3px;
  display: inline-block;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .blog-area {
    margin: 0 0 0 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .blog-area {
    margin: 0 0 0 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-area {
    margin: 0 0 0 0;
  }
}

@media (max-width: 767px) {
  .blog-area {
    margin: 0 0 0 0;
  }
}

.z-blogs {
  border-radius: 10px;
  background: #ffffff;
  -webkit-box-shadow: 5px 15px 60px rgba(27, 33, 47, 0.05);
          box-shadow: 5px 15px 60px rgba(27, 33, 47, 0.05);
}

.z-blogs__thumb {
  overflow: hidden;
  border-radius: 10px;
}

.z-blogs__thumb img {
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

@media (max-width: 767px) {
  .z-blogs__thumb img {
    width: 100%;
  }
}

.z-blogs h5 {
  color: #208da1;
  font-weight: 500;
  text-transform: uppercase;
}

.z-blogs .sub-title {
  color: #1B212F;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .z-blogs .sub-title {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .z-blogs .sub-title {
    font-size: 22px;
  }
}

.z-blogs__meta {
  border-top: 1px solid rgba(27, 33, 47, 0.1);
}

.z-blogs__meta span {
  color: #1B212F;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .z-blogs__meta span {
    font-size: 15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .z-blogs__meta span {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .z-blogs__meta span {
    font-size: 15px;
  }
}

.z-blogs__content {
  padding: 0 25px 30px 25px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .z-blogs__content {
    padding: 0 15px 30px 15px;
  }
}

@media (max-width: 767px) {
  .z-blogs__content {
    padding: 0 15px 30px 15px;
  }
}

.z-blogs:hover .z-blogs__thumb img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.z-blogs:hover .sub-title {
  color: #208da1;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .blog-bg {
    padding-left: 0;
    padding-right: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-bg {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 767px) {
  .blog-bg {
    padding-left: 0;
    padding-right: 0;
  }
}

.z-blogs__content-02 {
  padding: 0 30px 25px 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .z-blogs__content-02 {
    padding: 0 15px 25px 15px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .z-blogs__content-02 {
    padding: 0 15px 25px 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .z-blogs__content-02 {
    padding: 0 15px 25px 15px;
  }
}

@media (max-width: 767px) {
  .z-blogs__content-02 {
    padding: 0 15px 25px 15px;
  }
}

.z-blogs__content-02 .z-blogs__meta {
  border: 0;
}

.z-blogs__content-02 .z-blogs__meta span {
  color: #707070;
}

.z-blogs__content-02 .z-blogs__meta span img {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.z-blogs__content-02 .sub-title {
  font-weight: 700;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .z-blogs__content-02 .sub-title {
    font-size: 22px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .z-blogs__content-02 .sub-title {
    font-size: 20px;
  }
}

.z-blogs-3 .blog__tags span {
  color: #208da1;
  font-size: 16px;
  line-height: 1;
  background-color: rgba(255, 114, 58, 0.1);
  padding: 14px 29px;
  border-radius: 40px;
  display: inline-block;
  margin-right: 7px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .z-blogs-3 .blog__tags span {
    margin-right: 3px;
    padding: 14px 20px;
  }
}

@media (max-width: 767px) {
  .z-blogs-3 .blog__tags span {
    margin-right: 4px;
    padding: 14px 25px;
  }
}

.z-blogs-3 .blog__tags span:last-child {
  color: #F14D5D;
  background-color: rgba(241, 77, 93, 0.1);
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .z-blogs-3 .z-blogs__content {
    padding: 0 15px 30px 15px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .z-blogs-3 .z-blogs__content {
    padding: 0 20px 30px 20px;
  }
}

@media (max-width: 767px) {
  .z-blogs-3 .z-blogs__content {
    padding: 0 15px 30px 15px;
  }
}

.z-blogs-3 .z-blogs__content .sub-title {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(27, 33, 47, 0.1);
}

.z-blogs-3 .z-blogs__content .z-blogs__meta {
  border: 0;
}

.z-blogs-3 .z-blogs__content .z-blogs__meta span {
  color: #1B212F;
  font-weight: 500;
}

.z-blogs-3 .z-blogs__content .z-blogs__meta span img {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.blog-details-box h2 {
  font-size: 46px;
  line-height: 1.4;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  .blog-details-box h2 {
    font-size: 30px;
  }
}

.blog-details-box .blogs__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blog-details-box .blogs__meta li {
  margin-right: 40px;
  margin-bottom: 10px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .blog-details-box .blogs__meta li {
    margin-right: 10px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .blog-details-box .blogs__meta li {
    margin-right: 0px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }
}

.blog-details-box .blogs__meta .blog-author {
  color: #1B212F;
  font-size: 20px;
  font-weight: 700;
}

.blog-details-box .blogs__meta span {
  color: #707070;
  font-size: 18px;
}

.blog-details-box .blogs__meta span img {
  margin-right: 7px;
}

.blog-details-box .blog-details-img {
  display: inline-block;
  border-radius: 5px;
}

.blog-details-social a {
  font-size: 20px;
  padding-left: 28px;
  width: unset;
  height: unset;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .blog-details-social a {
    padding-left: 10px;
  }
}

.blog-details-social a:hover {
  color: #208da1;
}

.blog-details-social a:first-child {
  color: #516EAB;
}

.blog-details-social a:nth-child(2) {
  color: #F62968;
}

.blog-details-social a:nth-child(3) {
  color: #CA212A;
}

.blog-details-social a:last-child {
  color: #29C5F6;
}

.blog-details-title {
  font-size: 30px;
}

@media (max-width: 767px) {
  .blog-details-title {
    font-size: 25px;
  }
}

.blog-quote-box {
  background-color: rgba(255, 114, 58, 0.05);
  padding: 30px 80px 30px 40px;
}

@media (max-width: 767px) {
  .blog-quote-box {
    padding: 30px 15px 30px 15px;
  }
}

.blog-quote-box .quote-icon {
  float: left;
  margin-right: 20px;
}

@media (max-width: 767px) {
  .blog-quote-box .quote-icon {
    float: none;
    margin-bottom: 15px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-quote-box .quote-icon {
    float: left;
  }
}

.blog-quote-box .quote__text {
  overflow: hidden;
}

.blog-quote-box .quote__text p {
  margin-bottom: 20px;
}

.video-details-area {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 403px;
  border-radius: 5px;
  position: relative;
  z-index: 1;
}

.video-details-area .popup-video {
  width: 65px;
  height: 65px;
  line-height: 65px;
  font-size: 11px;
  position: absolute;
  top: 50%;
  text-align: center;
  margin: 0 auto;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.video-details-area .popup-video:hover {
  background-color: #2878EB;
}


.comments-form input {
  color: #707070;
  font-size: 16px;
  height: 60px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid rgba(112, 112, 112, 0.2);
  padding-left: 30px;
  display: inline-block;
}

.comments-form input:focus {
  border-color: #208da1;
}

.comments-form textarea {
  color: #707070;
  font-size: 16px;
  height: 250px;
  width: 100%;
  border-radius: 5px;
  border: 1px solid rgba(112, 112, 112, 0.2);
  padding-top: 28px;
  padding-left: 30px;
  display: inline-block;
  resize: none;
}

.comments-form textarea:focus {
  border-color: #208da1;
}


.widget {
  border: 1px solid rgba(112, 112, 112, 0.1);
  border-radius: 5px;
}

.widget .sub-title {
  font-weight: 700;
  border: 1px solid rgba(112, 112, 112, 0.1);
  padding-left: 20px;
}



.cb-2 {
  background-color: rgba(241, 77, 93, 0.05);
}

.cb-2 .contact__iocn {
  background-color: #F14D5D;
}

.cb-3 {
  background-color: rgba(255, 114, 58, 0.05);
}

.cb-3 .contact__iocn {
  background-color: #208da1;
}

.contact-form input {
  font-weight: 600;
}

.contact-form textarea {
  font-weight: 600;
}

.contact-form-wrapper .message_btn {
  border: 0;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 24px 84px;
  border-radius: 5px;
}

@media (max-width: 767px) {
  .contact-form-wrapper .message_btn {
    padding: 24px 70px;
  }
}


.footer__social a {
  background-color: rgba(255, 114, 58, 0.1);
  width: 39px;
  height: 39px;
  font-size: 16px;
  line-height: 39px;
}

.footer__social a:hover {
  color: #ffffff;
  background-color: #208da1;
}

.footer__widget .widget-title {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
}

.fot-list a {
  color: #707070;
  display: inline-block;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.fot-list a:hover {
  color: #208da1;
}

.copy-right-area.border-bot {
  border: 0;
  background-color: #208da1;
  position: relative;
  bottom: 0;
}

.copy-right-area .copyright h5 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color:  #fff;
}

.copy-right-area .copyright h5 a {
  font-weight: 700;
}
.copy-right-area .copyright h5 a:hover {
  color:#fff;
  opacity: 0.8;
}

.border-bot {
  border-bottom: 1px solid rgba(112, 112, 112, 0.1);
}

.border-bot-2 {
  border-bottom: 1px solid rgba(255, 114, 58, 0.2);
}

.footer-area-2 {
  position: relative;
  z-index: 1;
}

.footer-area-2::before {
  content: '';
  position: absolute;
  width: 515px;
  height: 552px;
  background: #f14d5d;
  opacity: 0.03;
  filter: 50px;
  -webkit-filter: blur(50px);
  -moz-filter: blur(50px);
  -o-filter: blur(50px);
  right: 20.57%;
  bottom: 65px;
  z-index: -1;
}

.footer-area-2 .widget-title {
  text-transform: capitalize;
}

.footer__widget__two .mail-to {
  color: #208da1;
  font-size: 20px;
  font-weight: 500;
}

.footer__widget__two .phone-num {
  color: #1B212F;
}

.footer__widget__two .subscribe-form-box .subscribe-form input {
  font-size: 14px;
  color: #707070;
  width: 300px;
  height: 50px;
  padding-left: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .footer__widget__two .subscribe-form-box .subscribe-form input {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .footer__widget__two .subscribe-form-box .subscribe-form input {
    width: 100%;
  }
}

.footer__widget__two .subscribe-form-box .sub_btn {
  padding: 19px 51px;
  background-color: #208da1;
  position: unset;
  width: 300px;
}

@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .footer__widget__two .subscribe-form-box .sub_btn {
    width: 100%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .footer__widget__two .subscribe-form-box .sub_btn {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer__widget__two .subscribe-form-box .sub_btn {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .footer__widget__two .subscribe-form-box .sub_btn {
    width: 100%;
  }
}

.footer__widget__two .footer__social a {
  background-color: #ffffff;
}

.footer__widget__two .footer__social a:hover {
  color: #ffffff;
  background-color: #208da1;
}

.border-bot-top {
  border-top: 1px solid rgba(255, 114, 58, 0.2);
}

.copyright .fot-list li {
  display: inline-block;
  margin-left: 55px;
}

@media only screen and (min-width: 992px) and (max-width: 1200px) {
  .copyright .fot-list li {
    margin-left: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .copyright .fot-list li {
    margin-left: 20px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .copyright .fot-list li {
    margin-left: 0px;
    margin-right: 5px;
  }
}

@media (max-width: 767px) {
  .copyright .fot-list li {
    margin-left: 0px;
    margin-right: 20px;
  }
}

.copyright .fot-list li a {
  color: #303030;
}

.footer-bg {
  background-color: rgba(255, 114, 58, 0.03);
}

.footer-area {
  position: relative;
  z-index: 1;
}

.footer-area .footer-blur {
  width: 583px;
  height: 619px;
  background: #f14d5d;
  opacity: 0.05;
  filter: blur(50px);
  -webkit-filter: blur(50px);
  -moz-filter: blur(50px);
  -o-filter: blur(50px);
  position: absolute;
  right: 0;
  bottom: 25px;
  border-radius: 50%;
}

.footer-area-2 .footer-blur-bg {
  width: 515px;
  height: 552px;
  background: #f14d5d;
  opacity: 0.03;
  filter: blur(50px);
  -webkit-filter: blur(50px);
  -moz-filter: blur(50px);
  -o-filter: blur(50px);
  position: absolute;
  right: 20.57%;
  bottom: 65px;
  z-index: -1;
}

@media (min-width: 768px) and (max-width: 1500px){
  .align-shapes{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}
}
@media (max-width: 767px) {
  .section-title{
    text-align: center;
  }
  .intro h1{
    font-size: 2rem;
  }

  .footer-log a img{
    max-width: 150px;
    display: block;
    margin: 0 auto;
  }

  .footer-log a{
    text-align: center;
    display: block;
    margin: 0 auto;
  }
  h2{
    font-size: 1.9rem;
  }
  .deal-box h2{
    font-size: 1.9rem;
  }
}




@media (max-width: 1366px){
    .foto-sticker.tree {
        top: 5rem;
        padding: 40px;
    }
    .padrao-modal .modal-dialog{
        top: 4%;
    }
}