/**** Normalizarion Begin ****/

html {
  font-size: 62.5%;
}

@media (min-width: 1500px) {
  html {
    font-size: 61.5%;
  }
}

body {
  font-family: "poppins", "Open Sans", "Sans-serif";
  font-size: 1.2em;
}

body p {
  color: var(--font-gray);
}

body a {
  color: inherit;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--font-gray);
}

body a:hover {
  color: var(--font-black);
}

ul li {
  list-style-type: none;
}


/**** Normalizarion End ****/


/*.btn-primary{background-color: #e93b81; border-color: #e93b81;}*/
.btn-primary{background-color: #3a68a6; border-color: #3a68a6;}
.btn-primary:disabled{background-color: #7e9ac0; border-color: #7e9ac0;}
.bg-primary{background-color: #3a68a6!important; }
.bg-primary-dark{background-color: #253f56!important; }
.bg-primary-gradient{
  background: rgb(9 17 26);
  background: -webkit-radial-gradient(ellipse at top, rgba(53,102,144,1) 0%, rgb(9 17 26) 100%);
  background: radial-gradient(ellipse at top, rgba(53,102,144,1) 0%, rgb(9 17 26) 100%);
}

.btn-primary:hover {
  color: #fff;
  background-color: #265087;
  border-color: #265087;
}


.btn-outline-primary {color: #3a68a6; border-color: #3a68a6;}


.btn-outline-primary:hover {
  color: #fff;
  background-color: #265087;
  border-color: #265087;
}

.btn.border-primary {border-color: #3a68a6!important;}


.btn-check:focus+.btn-primary, .btn-primary:focus {
  color: #fff;
  background-color: #3a68a6;
  border-color: #3a68a6;
  box-shadow: 0 0 0 .25rem rgba(233,59,129,.5);
}

.btn-check:active+.btn-primary:focus, .btn-check:checked+.btn-primary:focus, .btn-primary.active:focus, .btn-primary:active:focus, .show>.btn-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 .25rem rgba(233,59,129,.5);
}

.bg-primary{background-color: #3a68a6;}


.text-primary{color: #3a68a6!important;}

/**** General Start ***/

.h-100vh{height: 100vh;}

.fw-600{font-weight: 600;}

.zindex-dropdown{z-index: 1000;}
.zindex-sticky{z-index: 1020;}
.zindex-fixed{z-index: 1030;}
.zindex-modal-backdrop{z-index: 1040;}
.zindex-offcanvas{z-index: 1050;}
.zindex-modal{z-index: 1060;}
.zindex-popover{z-index: 1070;}
.zindex-tooltip{z-index: 1080;}


.opacity-0 { opacity: 0; }
.opacity-25 { opacity: .25; }
.opacity-50 { opacity: .5; }
.opacity-75 { opacity: .75; }
.opacity-100 { opacity: 1; }

.group-disabled{pointer-events: none; opacity: 0.4;}


.obfit-contain{object-fit: contain;}
.obfit-cover{object-fit: cover;}

label.error{color: #dc3545}


.modal-title{font-size: 1.5rem;}
/**** General End ****/


/**** Header Begin ****/

.main-header {
  padding: 14px 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 99;
}

.main-header .container>.row>div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-header .container>.row>div:nth-child(3) {
  order: 2;
}

.main-header .container>.row>div:nth-child(2) {
  order: 0;
}

.main-header .container>.row>div:nth-child(1) {
  order: 1;
}

.main-header .logo {
  max-width: 200px;
}

.main-header:not(.sticky) .logo:nth-child(2), .main-header.sticky .logo:nth-child(1) {
  display: none;
}

.footer .logo {
  max-width: 120px;
}

.main-header .navbar {
  position: relative;
}

.main-header .navbar-collapse {
  min-width: 100vw;
  position: fixed;
  top: 60px;
  left: 0;
  background-color: white;
  padding: 20px 40px;
}

.main-header .navbar-toggler {
  border: 0;
  padding: 0;
  font-size: 1.6rem;
}

.main-header .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.main-header .nav-item a {
  color: var(--font-black);
  text-transform: uppercase;
}

.div-cart-account div {
  display: none;
}

.div-cart-account div:last-child {
  display: block;
}

.main-header .search-button {
  color: var(--font-black);
}

.main-header .my-account .btn {
  text-transform: uppercase;
  font-weight: 700;
}

.main-header .my-account .btn::after {
  border-top-color: #ccc4be;
}

.main-header .cart {
  padding: 10px;
  border-radius: 100%;
  background-color: var(--color-blue);
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.main-header .cart img {
  width: 12px;
}

.main-header .cart .items-cart {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 14px;
  height: 14px;
  border-radius: 100%;
  background-color: #fff;
  color: var(--font-black);
  text-align: center;
  font-size: 1rem;
  padding-top: 2px;
}

.main-header.sticky .cart .items-cart {
  background-color: #000;
  color: var(--font-white);
}


.main-header:not(.sticky) .navbar-nav .nav-item .nav-link{
  color: var(--font-white);
}

.main-header .navbar-nav .nav-item .nav-link.active{
  text-decoration: underline;
}
@media (min-width: 992px) {
  .main-header .navbar-collapse {
    background-color: initial;
    min-width: initial;
    padding: 0;
    position: initial;
  }
  .main-header .container>.row>div:nth-child(3) {
    order: initial;
  }
  .main-header .container>.row>div:nth-child(2) {
    order: initial;
    /*justify-content: flex-start;*/
    justify-content: flex-end;
  }
  .main-header .container>.row>div:nth-child(1) {
    order: initial;
  }
  .main-header .navbar-nav .nav-item.my-account,
  .main-header .navbar-nav .nav-item.menu-search_button {
    display: none;
  }
  .main-header .navbar-nav .nav-item a {
    margin-right: 16px;
    /*font-weight: 700;*/
  }

  .main-header:not(.sticky) .div-cart-account a{
    color: var(--font-white);    
  }

  .main-header:not(.sticky) .div-cart-account .my-account .dropdown-menu a{
    color: var(--font-black);    
  }

  .main-header.sticky .div-cart-account a{
    color: var(--font-black);    
  }

  .div-cart-account div {
    display: block;
  }
  .div-cart-account>div:first-child {
    position: relative;
  }
  .div-cart-account>div:first-child::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    border-right: 1px solid #959595;
  }
  .main-header .cart {
    width: 40px;
    height: 40px;
  }
  .main-header .cart .items-cart {
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    font-size: 1rem;
  }


  .ctn-footer-logo{
    max-width: 190px;
  }
  .ctn-footer-logo img{
    width: 150px;
  }
}


/**** Header End ****/


/**** Geral Begin****/

ul {
  padding: 0;
}

.ul-sociais li {
  display: inline-block;
  /*width: 25%;*/
  padding: 6px 8px;
  margin-bottom: 10px;
}

.ul-sociais li a {
  font-weight: 800;
}

.ul-sociais li a i {
  font-size: 1.7rem;
}

.ul-sociais a:hover,
.ul-sociais a:active {
  color: var(--color-blue);
}

button {
  height: 35px;
  border-radius: 20px;
  transition: .3s;
  font-size: 1em;
  border: 0;
  margin: 0 auto;
  font-weight: 600;
  color: var(--font-white);
  text-transform: uppercase;
  background-color: var(--color-blue);
}

/*button:hover {
    background-color: var(--bg-black);
}*/

input[type="checkbox"],
input[type="radio"],
input.form-check-input[type="checkbox"],
input.form-check-input[type="radio"] {
  position: relative;
  margin: 0;
  padding: 0;
  border-radius: 100%;
  width: 16px;
  height: 16px;
  margin-right: 1em;
  margin-left: 4px;
  border-width: 0;
  background-color: var(--light-gray);
}

.spinner-radio {
  position: relative;
}

.spinner-radio:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px; /* Largura igual ao do input radio */
  height: 22px; /* Altura igual ao do input radio */
  margin-top: -11px; /* Metade da altura */
  margin-left: -11px; /* Metade da largura */
  border: 2px solid transparent;
  border-top-color: var(--color-blue); /* Cor do spinner-radio */
  border-radius: 50%;
  animation: spin-radio 0.6s linear infinite;
}

@keyframes spin-radio {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

input[type="checkbox"]:checked,
input[type="radio"]:checked,
input[type="checkbox"].form-check-input:checked,
input[type="radio"].form-check-input:checked {
  background-image: none;
  background-color: var(--color-blue);
}

input[type="checkbox"]::after,
input[type="radio"]::after,
input[type="checkbox"].form-check-input::after,
input[type="radio"].form-check-input::after {
  content: '';
  position: absolute;
  left: -4px;
  top: -4px;
  margin: 0;
  padding: 0;
  border-radius: 100%;
  width: 24px;
  height: 24px;
  border: 1px solid #B7B7B7;
}

select,
select.form-select {
  background-position: right 20px center;
}

select,
select.form-select,
input,
input.form-control {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 25px;
  margin-bottom: 20px;
}


select.form-select:has(option:first-child:checked) {
  color: #898989; /* Cor quando o texto de placeholder está visível */
}

input,
input.form-control,
select,
select.form-select,
textarea,
textarea.form-control {
  background-color: var(--light-gray);
  border: 0;
  border-radius: 40px;
  color: var(--font-black);
  font-size: 1.2em;
  transition: .3s;
  outline: none !important;
}
textarea.form-control {
  border-radius: 25px;
  padding-top: 1rem;
}

input.form-control:focus,
textarea:focus {
  border-color: var(--font-black);
  outline: none !important;
}

input.form-control::placeholder,
textarea::placeholder {
  color: var(--font-gray);
}
select.form-select{
  padding-left: 1.5rem;
  padding-right: 3.5rem;
}
select.form-select.form-select-sm{
  padding-top: .75rem;
  padding-bottom: .75rem;
  font-size: 1.2rem;
}

.forgetPassword {
  display: block;
  text-align: right;
  color: var(--color-blue);
  padding-right: 4px;
}

section {
  padding: 80px 10px;
}

.section-title {
  font-weight: 700;
  font-size: 3rem;
  position: relative;
  width: fit-content;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: -10px;
  width: 40px;
  height: 10px;
  border-top: 1px solid var(--color-blue);
}

.nav_pagination {
  margin-top: 40px;
}

.nav_pagination .pagination li.active a {
  background-color: transparent;
  color: var(--color-blue);
}

.nav_pagination .pagination li a {
  border: 0;
  color: var(--font-black);
  font-weight: 600;
  display: block;
  padding: 10px;
}

.nav_pagination .pagination li a:hover {
  color: var(--color-blue);
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3.6rem;
  }
}

.header-pages {
  padding: 120px 10px 40px 10px;
  text-align: center;
}

.header-pages h3 {
  font-weight: 800;
  font-size: 2.2em;
}

.breadcrumbs {
  font-size: 1.2rem;
  padding: 0 10px;
  display: flex;
  justify-content: space-around;
  width: fit-content;
  margin: 0 auto;
  margin-top: 15px;
}

.breadcrumbs li {
  color: #9fa4af;
  color: var(--font-gray);
  padding: 0 15px;
  text-align: center;
}

.breadcrumbs li:last-child {
  color: var(--font-black);
  font-weight: 600;
}

.breadcrumbs li.separator {
  font-size: 3em;
  line-height: 0;
  padding: 0;
}

.navigation .pagination{
  align-items: center;
}
.navigation .pagination .page-item:not(.active):first-child .page-link,
.navigation .pagination .page-item:not(.active):last-child .page-link {
  border-radius: 50%; 
  padding: 0 1rem;
  width: 4rem;
  margin: 0 .8rem;
}
.navigation .pagination .page-item.active .page-link{
  color: var(--color-blue)!important;
  background-color: transparent;
  border-bottom: 2px solid var(--color-blue)!important;
  margin: 0 20px;
  font-size: 1.3rem;
}

.navigation .pagination .page-item.active .page-link{
  color:#fff;
}

.navigation .pagination .page-item .page-link,
.navigation .pagination .page-item .page-link span{
  color: var(--color-blue);
}

.navigation .pagination .page-item:not(.active):first-child .page-link span,
.navigation .pagination .page-item:not(.active):last-child .page-link span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 3.8rem;
  font-size: 2.2rem;
}

.navigation .pagination .page-item .page-link:not([rel="prev"]):not([rel="next"]){
  border: none; 
}


/**** Geral End****/


/**** Principal-slide Section Begin ****/

.section-slide {
  padding: 0;
}

.section-slide .carousel-item {
  min-height: 90vh;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 10vh;
}

.section-slide .carousel-item>img {
  height: 220px;
  max-height: 100%;
  object-fit: contain;
  position: absolute;
  bottom: 0;
  right: 10%;
}

.section-slide .carousel-caption {
  position: initial;
  text-align: initial;
  color: initial;
  height: 70vh;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: var(--font-white);
  padding: 0 10px;
}

.section-slide .carousel h5 {
  letter-spacing: .2rem;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 6px;
}

.section-slide .carousel p:not(.small) {
  font-size: 2.5rem;
  color: var(--font-white);
  line-height: 1;
  font-weight: 700;
  font-family: 'Big Bang', sans-serif;
}

.section-slide .carousel .carousel-caption p:nth-child(2) {
  color: var(--font-white-alpha);
}

.section-slide .carousel .carousel-caption p.small {
  color: var(--font-white-alpha);
}

.section-slide .carousel .carousel-caption a {
  margin-top: 10px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--font-white);
  display: flex;
  align-items: center;
}

.section-slide .carousel .carousel-caption a img {
  object-fit: contain;
  height: 10px;
  margin-left: 10px;
}

.section-slide .carousel-arrows {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
  width: 100%;
}

.section-slide .carousel-control-next,
.section-slide .carousel-control-prev {
  background-color: #ffffff40;
  width: 50px;
  height: 50px;
  border-radius: 40px;
  transition: .3s;
  /*    box-shadow: 0 0 32px 4px var(--font-lightpurple);*/
}
.section-slide .carousel-control-next {
  right: 80px;
}

.section-slide .carousel-control-prev {
  left: 80px;
}

.section-slide .carousel-control-next:hover,
.section-slide .carousel-control-prev:hover {
  background-color: var(--color-blue);
}

.section-slide .carousel-control-prev-icon,
.section-slide .carousel-control-next-icon {
  background-image: url('../../images/arrow_subscribe_now.png');
  background-size: 10px;
  transform: rotate(180deg);
  filter: invert(1);
}

.section-slide .carousel-control-next-icon {
  transform: rotate(0deg);
}

@media (min-width: 410px) {
  .section-slide .carousel h5 {
    font-size: 1.4rem;
    letter-spacing: .4rem;
  }
  .section-slide .carousel p:not(.small) {
    font-size: 4rem;
  }
}

@media (min-width: 768px) {
  .section-slide .carousel-item {
    min-height: 80vh;
    padding-top: 0;
  }
  .section-slide .carousel-item>img {
    height: 550px;
    max-height: 100%;
    object-fit: contain;
  }
  .section-slide .carousel-caption {
    height: 30vh;
  }
  .section-slide .carousel h5 {
    letter-spacing: .6rem;
    font-weight: 400;
  }
  .section-slide .carousel p:not(.small){
    font-size: 5rem;
    color: var(--font-white);
    line-height: 1;
    font-weight: 700;
  }
  .section-slide .carousel .carousel-caption a {
    margin-top: 10px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--font-white);
    display: flex;
    align-items: center;
  }
}

@media (min-width: 992px) {
  .section-slide .carousel-inner .carousel-caption {
    max-width: 70vw;
    margin: 0 auto;
  }
  .section-slide .carousel-item {
    min-height: 90vh;
  }
  .section-slide .carousel-item>img {
    height: 500px;
  }
  .section-slide .carousel-caption {
    height: 80vh;
  }
  .section-slide .carousel-caption p {
    max-width: 600px;
  }
  .section-slide .carousel-indicators [data-bs-target] {
    width: 20px;
    font-size: 1.6rem;
  }
  .section-slide .carousel-indicators .active {
    font-size: 8rem;
    width: 80px;
    margin-top: 40px;
  }
}

@media (min-width: 1400px) {
  .section-slide .carousel-item>img {
    height: 750px;
  }
}

@media (min-width: 1920px) {
  .section-slide .carousel-item>img {
    height: 950px;
  }
}


/**** Principal-slide Section End ****/


/**** Models Section Begin ****/

.section-models {
  padding: 80px 40px 0;
}

.section-models .nav {
  flex-direction: column;
  column-gap: 30px;
}

.section-models .nav .nav-link {
  color: #9fa4af;
  background-color: transparent;
  text-transform: uppercase;
  font-weight: 600;
  padding: 10px 0;
  z-index: 99;
}

.section-models .nav .nav-link.active {
  color: var(--font-black);
}

.section-models .tab-content {
  margin-top: 50px;
  max-width: 1920px;
  margin: 0 auto;
}

.section-models .item {
  text-transform: uppercase;
  padding: 0 5px;
}

.section-models .owl-carousel h5 {
  color: #9fa4af;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 15px;
}

.section-models .owl-carousel h4 {
  color: var(--font-black);
  font-size: 1.3rem;
  font-weight: 600;
}

.section-models .owl-nav {
  position: absolute;
  top: -210px;
  right: 0;
  width: 180px;
  height: 30px;
  display: block !important;
}

.section-models .owl-nav .owl-next,
.section-models .owl-nav .owl-prev {
  background-color: white;
  width: 70px;
  height: 30px;
  border-radius: 20px;
  transition: .3s;
  box-shadow: 0 0 32px 4px #dddddd;
}

.section-models .owl-nav .owl-next:hover,
.section-models .owl-nav .owl-prev:hover {
  background-color: var(--color-blue);
}

.section-models .owl-nav .owl-prev span,
.section-models .owl-nav .owl-next span {
  color: #ffffff00;
  width: 100%;
  display: block;
  background-image: url('../../images/arrow-left.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

.section-models .owl-nav .owl-next span {
  transform: rotate(180deg);
}

.section-models .owl-nav .owl-next:hover span,
.section-models .owl-nav .owl-prev:hover span {
  filter: contrast(2);
}

.section-models .link-all_models a {
  margin: 0 auto;
  width: 200px;
  max-width: fit-content;
  display: block;
  margin-top: 60px;
  color: var(--font-black);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .2em;
  border-bottom: 1px solid #aeaeae;
}

@media (min-width: 768px) {
  .section-models .nav {
    flex-direction: row;
    margin-left: 200px;
    margin-top: -40px;
  }
  .section-models .tab-content {
    margin-top: 60px;
  }
  .section-models .owl-nav {
    top: -110px;
  }
}


/**** Models Section End ****/


/**** Testemonials Section Begin ****/

.section-testemonials {
  padding: 80px 0;
}

.section-testemonials .carousel {
  padding-bottom: 30px;
}

.section-testemonials .carousel-item {
  min-height: 380px;
  justify-content: center;
  align-items: center;
}

@media (min-width: 500px) {
  .section-testemonials .carousel-item {
    min-height: 320px;
  }
}

.section-testemonials .carousel-item .carousel-caption {
  width: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.section-testemonials .carousel-item img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
  position: absolute;
  top: 55px;
  left: 50%;
  transform: translateX(-50%);
}

.section-testemonials .carousel-item h5 {
  color: #898989!important;
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 500;
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 560px;
}

.section-testemonials .carousel-item p {
  color: #9fa4af;
}

.section-testemonials .carousel-item p b {
  color: #000000;
}

.section-testemonials .carousel-arrows {
  width: 180px;
  height: 30px;
  position: relative;
  margin: 0 auto;
}

.section-testemonials .carousel-control-next,
.section-testemonials .carousel-control-prev {
  background-color: white;
  width: 70px;
  height: 30px;
  border-radius: 20px;
  transition: .3s;
  box-shadow: 0 0 32px 4px #dddddd;
}

.section-testemonials .carousel-control-next:hover,
.section-testemonials .carousel-control-prev:hover {
  background-color: var(--color-blue);
}

.section-testemonials .carousel-control-prev-icon,
.section-testemonials .carousel-control-next-icon {
  background-image: url('../../images/arrow-left.png');
  background-size: 10px;
}

.section-testemonials .carousel-control-next-icon {
  transform: rotate(180deg);
}

.section-testemonials .carousel-control-next:hover .carousel-control-next-icon,
.section-testemonials .carousel-control-prev:hover .carousel-control-prev-icon {
  filter: contrast(2);
}


/**** Testemonials Section End ****/


/**** Course Section Begin****/

.section-course {
  height: 100vh;
  background-color: #0000000D;
  background-image: var(--bg-image-course);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left bottom;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.section-course::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: .6;
  z-index: 0;
}

.section-course::after {
  content: '';
  width: 150px;
  height: 150px;
  position: absolute;
  right: 0;
  top: 0;
  background-image: var(--bg-image-course-2);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top right;
}

.section-course .container {
  z-index: 9;
}

.section-course .container * {
  text-transform: uppercase;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  margin-top: 10px;
}

.section-course h2:first-of-type {
  font-family: 'Big Bang', sans-serif;
  text-transform: initial;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1;
  letter-spacing: .2em;
  display: flex;
  align-items: flex-start;
  color: #ffffff;
  font-weight: 100;
}

.section-course h2:first-of-type img {
  width: 80px;
  object-fit: contain;
  margin: 0;
}

.section-course h6 {
  background-color: var(--color-blue);
  font-size: 1.4rem;
  letter-spacing: .25em;
  padding: 6px 0 6px 20px;
  border-radius: 4px;
  color: white;
}

.section-course p {
  color: white;
}

.section-course h2:last-of-type {
  color: var(--font-lightpurple);
  font-weight: 900;
  font-size: 5rem;
  line-height: .6;
}

@media (min-width: 400px) {
  .section-course h2:first-of-type {
    font-size: 5rem;
  }
  .section-course h6 {
    font-size: 1.6rem;
    letter-spacing: .4em;
  }
  .section-course h2:last-of-type {
    font-size: 7rem;
  }
}

@media (min-width: 768px) {
  .section-course::before {
    opacity: .6;
  }

  .section-course .container * {
    margin: 0;
    margin-top: 10px;
  }
  .section-course {
    max-height: 600px;
  }
  .section-course h6 {
    letter-spacing: .6em;
  }
  .section-course h2:last-of-type {
    font-size: 8rem;
    margin-top: 20px;
  }
}


/**** Course Section End****/


/**** Blog Section Begin****/

.section-blog .post {
  margin-top: 40px;
}

.section-blog .blog-iframe {
  width: 100%;
  height: 570px;
}

@media (min-width: 768px) {
  .section-blog .blog-iframe {
    height: 460px;
  }
}

@media (min-width: 1200px) {
  .section-blog .blog-iframe {
    height: 300px;
  }
}

.section-blog .post img {
  width: 100px;
  height: 160px;
  object-fit: cover;
}

.post h6 {
  font-size: 4rem;
  position: relative;
  line-height: .8;
  font-weight: 700;
  color: #ebebeb;
  text-align: center;
}

.post h6 span {
  font-size: 1.4rem;
  color: var(--color-blue);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.post .post-author {
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--font-gray);
  text-transform: capitalize;
  margin-bottom: 20px;
}

.post h4 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--font-black);
}

.post .post-content {
  color: var(--font-gray);
  font-size: 1.3rem;
}

.post .post-link a {
  color: var(--font-black);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .2em;
}

@media (min-width: 768px) {
  .section-blog {
    padding: 120px;
  }
  .post h6 {
    font-size: 6rem;
  }
  .post h6 span {
    font-size: 1.8rem;
  }
}


/**** Blog Section End****/


/**** Footer Begin ****/
.main-footer.fixed{position: fixed; bottom: -10px; width: 100%;}

.main-footer .logo {
  display: block;
  max-width: 180px;
  margin-bottom: 12px;
}



.main-footer {
  text-align: center;
  background: rgb(9 17 26);
  background: -webkit-radial-gradient(ellipse at top, rgba(53,102,144,1) 0%, rgb(9 17 26) 100%);
  background: radial-gradient(ellipse at top, rgba(53,102,144,1) 0%, rgb(9 17 26) 100%);
  padding: 80px 0 0;
}

@media (min-width: 768px) {
  .main-footer {
    text-align: left;
  }
}

.main-footer .row {
  row-gap: 20px;
}


/*Logo Section Begin*/

.main-footer .row div:first-of-type h3 {
  letter-spacing: .2em;
  line-height: 1.5em;
}


/*Logo Section End*/

.main-footer h3 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .main-footer h3 {
    margin-bottom: 22px;
  }
}


/*Newsletter Section Begin*/

.main-footer .input-group input {
  color: var(--font-black);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 10px 20px;
  padding-right: 40px;
  border: 0;
  border-radius: 80px !important;
  background-color: #FFFFFF;
  margin: 0;
}

.main-footer .input-group input::placeholder {
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--font-gray);
}

.main-footer .input-group-append {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 8px;
}

.main-footer .input-group .btn {
  font-size: 1.3rem;
  z-index: 3;
}

.main-footer .input-group .btn:hover {
  background-color: transparent;
  color: var(--color-blue);
}


/*Newsletter Section End h3 h3*/


/* Author Section Begin*/

.main-footer, .main-footer a , .main-footer p {
  color: #fff;
  font-size: 1rem;
  z-index: 100;
}



.main-footer .footer-sub{
  margin-top: 80px;
  background-color: #ffffff08;
}

.main-footer .logorm{
  width: 75px;
  height: 20px;
  object-fit: cover;
}


/* Author Section End*/


/**** Footer End ****/


/*@@@@@@@@@@@@@@@@@ PAGE ABOUT ME @@@@@@@@@@@@@@@@@*/

.entry-about-page .section-about h4 {
  font-size: 2.5em;
  font-weight: 600;
  text-align: center;
}

.entry-about-page .section-about .description {
  text-align: center;
}

.entry-about-page .section-about .description p {
  font-size: 1.2em;
}

.entry-about-page .section-about .description h5.assinatura {
  font-family: 'Feeling Passionate', sans-serif;
  font-size: 35px;
}

.entry-about-page .section-about .differentials {
  text-align: center;
}

.entry-about-page .section-about .differentials>div {
  padding: 20px 0;
}

.entry-about-page .section-about .differentials h6 {
  font-size: 1.4em;
  font-weight: 600;
}

.entry-about-page .section-about .differentials span {
  color: var(--font-gray);
  font-weight: 500;
  font-size: 1.15em;
}

@media (min-width: 768px) {
  .entry-about-page .section-about .name {
    padding-right: 6em;
  }
  
  .entry-about-page .section-about .name img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: 0 -100px;
  }

  .entry-about-page .section-about .description {
    text-align: left;
    position: relative;
    padding-left: 10em;
  }
  .entry-about-page .section-about .description::before {
    content: '';
    position: absolute;
    left: 0;
    height: 70px;
    width: 4px;
    background-color: var(--color-blue);
    border-radius: 2px;
  }
}


/*@@@@@@@@@@@@@@@@@ PAGE ABOUT ME END @@@@@@@@@@@@@@@@@*/


/*@@@@@@@@@@@@@@@@@ PAGE CONTACT @@@@@@@@@@@@@@@@@*/

.entry-contact-page .section-contact {
  margin: 40px 0;
}

.entry-contact-page .section-contact .logo-contact {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 40px;
}

.entry-contact-page .section-contact .contact-info {
  text-align: center;
}

.entry-contact-page .section-contact .contact-info .ul-sociais {
  margin-top: 30px;
}

.entry-contact-page .section-contact .contact-info .ul-sociais li {
  margin-bottom: 0;
}

.entry-contact-page .section-contact .contact-info .ul-sociais a:hover {
  color: var(--font-black);
}

.entry-contact-page .section-contact .contact-info p {
  font-size: 1.2em;
  font-weight: 600;
}

.entry-contact-page .section-contact .contact-info p b {
  color: var(--font-black);
}

.entry-contact-page .section-contact .contact-info p b:hover {
  color: var(--font-gray);
}

.entry-contact-page .section-contactform {
  background-color: var(--light-gray);
  text-align: center;
}

.entry-contact-page .section-contactform h2 {
  font-size: 2.5em;
  font-weight: 600;
  margin-bottom: 20px;
}

.entry-contact-page .section-contactform p {
  font-size: 1.2em;
  font-style: italic;
}

.entry-contact-page .section-contactform form {
  margin-top: 60px;
}

.entry-contact-page .section-contactform input {
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.entry-contact-page .section-contactform input,
.entry-contact-page .section-contactform textarea {
  padding-left: 0;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  color: var(--font-black);
  border-bottom: 1px solid var(--font-gray);
  font-size: 1.2em;
  transition: .3s;
}

.entry-contact-page .section-contactform input:focus,
.entry-contact-page .section-contactform textarea:focus {
  border-color: var(--font-black);
  outline: none !important;
}

.entry-contact-page .section-contactform input::placeholder,
.entry-contact-page .section-contactform textarea::placeholder {
  color: var(--font-gray);
}

.entry-contact-page .section-contactform button {
  margin-top: 80px;
  background-color: var(--color-blue);
}

.entry-contact-page .section-contactform button:hover {
  background-color: var(--bg-black);
}

@media (min-width: 768px) {
  .entry-contact-page .section-contact {
    /*margin: 120px 0;*/
  }
  .entry-contact-page .section-contact .logo-contact {
    margin-bottom: 0px;
  }
  .entry-contact-page .section-contact .logo-contact {
    padding-right: 10em;
  }
  .entry-contact-page .section-contact .contact-info {
    text-align: left;
    position: relative;
    padding-left: 10em;
  }
  .entry-contact-page .section-contact .contact-info::before {
    content: '';
    position: absolute;
    left: 0;
    height: 70px;
    width: 4px;
    background-color: var(--color-blue);
    border-radius: 2px;
  }
  .entry-contact-page .section-contactform input {
    margin-bottom: 0;
  }
  .entry-contact-page .section-contactform button {
    width: 140px;
  }
}


/*@@@@@@@@@@@@@@@@@ PAGE CONTACT END @@@@@@@@@@@@@@@@@*/


/*@@@@@@@@@@@@@@@@@ PAGE LOGIN AND REGISTER @@@@@@@@@@@@@@@@@*/

.login-login-page .section-login_register {
  margin: 40px 0;
}

.login-login-page .section-login_register h2 {
  font-size: 2em;
  font-weight: 600;
}

.login-login-page .section-login_register p {
  font-size: 1.2em;
}

.login-login-page .section-login_register form {
  margin-top: 20px;
}

.login-login-page .section-login_register button {
  background-color: var(--bg-black);
  margin-top: 30px;
  width: 100%;
}

.login-login-page .section-login_register button:hover {
  background-color: var(--color-blue);
}

@media (min-width: 768px) {
  .login-login-page .section-login_register {
    /*margin: 120px 0;*/
  }
  .login-login-page .section-login_register button {
    width: 140px;
    margin-left: 0;
  }
}


/*@@@@@@@@@@@@@@@@@ PAGE LOGIN AND REGISTER END @@@@@@@@@@@@@@@@@*/


/*@@@@@@@@@@@@@@@@@ PAGE CHECKOUT @@@@@@@@@@@@@@@@@*/

.cart-cart-page .section-cart h2 {
  font-size: 2em;
  font-weight: 600;
}

.cart-cart-page .section-cart p {
  font-size: 1.2em;
}

.cart-cart-page .section-cart .login_cupon {
  margin-bottom: 30px;
}

.cart-cart-page .section-cart .login_cupon a {
  font-weight: 800;
  color: var(--color-blue);
  margin-left: 10px;
}

.cart-cart-page .section-cart form[id="formCheckout"] {
  margin-top: 20px;
}

.cart-cart-page .section-cart form[id="formCheckout"] .form-label {
  padding-left: 10px;
}

.cart-cart-page .section-cart button {
  background-color: var(--color-blue);
  margin-top: 60px;
  width: 100%;
}

.cart-cart-page .section-cart button:hover {
  background-color: var(--bg-black);
}

.cart-cart-page .section-cart .payment-column {
  background-color: var(--light-gray);
  padding: 40px 20px 120px 20px;
  margin-top: 40px;
}

.cart-cart-page .section-cart .payment-column h2 {
  text-align: center;
}

.cart-cart-page .section-cart .payment-column h5 {
  font-weight: 700;
  font-size: 1.5em;
}

.cart-cart-page .section-cart .payment-column hr {
  color: #AAAAAA;
}

.cart-cart-page .section-cart .payment-column ul.items {
  margin-top: 10px;
}

.cart-cart-page .section-cart .payment-column ul.items li ul li {
  display: inline-block;
  width: 49%;
  padding: 6px 0;
}

.cart-cart-page .section-cart .payment-column ul.items li ul li:nth-child(even) {
  text-align: right;
}

.cart-cart-page .section-cart .payment-column div.total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.cart-cart-page .section-cart .payment-column div.total .total-value {
  color: var(--color-blue);
}

.cart-cart-page .section-cart .payment-column .form-check {
  padding: 15px 0;
}

.cart-cart-page .section-cart .payment-column .form-check-label {
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.cart-cart-page .section-cart .payment-column .form-check .details {
  margin-left: 1em;
  padding-left: 24px;
  transition: .3s;
  height: 0;
  position: absolute;
  opacity: 0;
}

.cart-cart-page .section-cart .payment-column .form-check .form-check-input:checked~.details {
  display: block;
  height: initial;
  opacity: 1;
}

@media (min-width: 768px) {
  .cart-cart-page .section-cart {
    margin: 40px 0;
  }
  .cart-cart-page .section-cart {
    margin: 120px 0;
  }
  .cart-cart-page .section-cart button {
    margin-left: 0;
  }
  .cart-cart-page .section-cart .payment-column {
    padding: 25px 40px 120px 40px;
    margin-top: 0;
  }
}


/*@@@@@@@@@@@@@@@@@ PAGE CHECKOUT END @@@@@@@@@@@@@@@@@*/


/*@@@@@@@@@@@@@@@@@ PAGE MY COURSES @@@@@@@@@@@@@@@@@*/

.main-header .div-cart-account .btnHelp {
  background-color: var(--color-blue);
  color: var(--font-white);
  border-radius: 20px;
  width: 90px;
  padding: 0;
  font-size: .7rem;
}


.menu-accordion {
  width: 250px;
  height: 100%;
  overflow: hidden;
}

.menu-accordion .menu-item input {
  display: none;
}

.menu-accordion .menu-header {
  padding: 10px;
  cursor: pointer;
  display: block;
}

.menu-accordion .menu-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.menu-accordion .menu-content p {
  margin: 0;
}


.menu-accordion .menu-item input:checked + .menu-header + .menu-content {
  max-height: 100vh;
  transition: max-height 0.3s ease-in;
}





.main-header .div-cart-account .btnHelp:hover {
  background-color: var(--bg-black);
}

.mycourses-index-page .section-my_courses h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.mycourses-index-page .section-my_courses .div-videos {
  margin-bottom: 60px;
}

.mycourses-index-page .section-my_courses .videoLinkCollapse {
  display: block;
  padding: 5px 0;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--font-black);
  text-transform: uppercase;
}

.mycourses-index-page .header-pages .list-categories li a.active,
.mycourses-index-page .header-pages .list-categories li a:hover {
  color: var(--font-black);
}

.section-contents
{
  padding: 20px 10px;
  margin-bottom: 40px;
}

.section-contents h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.mycourses-index-page .play-button-trigger:hover img{
  filter: brightness(.7);
}

.mycourses-index-page .play-button-trigger:hover .play-button{
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

.mycourses-index-page .play-button-trigger .play-button {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: url('../../images/icon-play.svg') no-repeat;
  background-size: auto 40%;
  background-position: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 150ms ease-in-out;
  -moz-transition: opacity 150ms ease-in-out;
  -ms-transition: opacity 150ms ease-in-out;
  -o-transition: opacity 150ms ease-in-out;
  transition: opacity 150ms ease-in-out;
  -webkit-transition: -webkit-transform 150ms ease-in-out;
  -moz-transition: -moz-transform 150ms ease-in-out;
  -o-transition: -o-transform 150ms ease-in-out;
  transition: transform 150ms ease-in-out;
}

.section-contents .videos .video {
  transition: .3s;
}

.section-contents .videos .video a.video-img {
  display: block;
}

.section-contents .videos .video a.video-img figure {
  position: relative;
  margin-bottom: 20px;
}

.section-contents .videos .video a.video-img figure .figure-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 6px 10px;
  background-color: #ededed;
  font-style: italic;
}

.section-contents .videos .video img {
  /*width: 100%;*/
  /*max-height: 420px;*/
  width: 240px;
  height: 345px;
  object-fit: cover;
  transition: .3s;
}

.section-contents .videos .video .info {
  text-transform: uppercase;
}

.section-contents .videos .video .info a {
  display: block;
}

.section-contents .videos .video h6 a {
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--font-black);
}

.section-contents .videos .video span a {
  font-weight: 600;
  font-size: 1rem;
  color: var(--font-gray);
}

.section-contents .videos .video span a:hover {
  color: var(--font-black);
}

.section-contents .videos .video .name a:hover,
.section-contents .videos .video h6 a:hover {
  color: var(--color-blue);
}

.section-contents .videos .video .name a {
  color: var(--font-black);
  font-size: 1.3rem;
  padding: 3px 0;
}

.section-contents .videos .video .subscribe a {
  margin-top: 15px;
  color: var(--color-blue);
}

.section-contents .videos .video .subscribe:hover a {
  color: var(--font-black);
}

.mycourses-index-page .section-my_courses .videosColumn .videos:not(.line_view) .video {
  /*max-width: 230px;*/
}

.mycourses-index-page .section-my_courses .videosColumn .videos .video a.video-img {
  display: block;
}

.mycourses-index-page .section-my_courses .videosColumn .videos .video img {
  margin-bottom: 20px;
  transition: .3s;
  object-fit: cover;
  min-height: 180px;
}

.mycourses-index-page .section-my_courses .videosColumn .videos .video .vb-progress{
  position: relative; height: 5px; bottom: 24px; background-color: #3a68a6;
}
.mycourses-index-page .section-my_courses .videosColumn .videos.line_view .video .vb-progress{
  bottom: 0;
}

.mycourses-index-page .section-my_courses .videosColumn .videos .video span a,
.mycourses-index-page .section-my_courses .videosColumn .videos .video h6 a {
  text-transform: uppercase;
  display: block;
}

.mycourses-index-page .section-my_courses .videosColumn .videos .video h6 a {
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--font-black);
}

.mycourses-index-page .section-my_courses .videosColumn .videos .video span a {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--font-gray);
}

.mycourses-index-page .section-my_courses .videosColumn .videos .video span a:hover {
  color: var(--font-black);
}

.mycourses-index-page .section-my_courses .videosColumn .videos .video h6 a:hover {
  color: var(--color-blue);
}

.mycourses-index-page .section-my_courses .videosColumn .videos .video .description {
  display: none;
}

.mycourses-index-page .section-my_courses .videosColumn .videos.line_view {
  display: flex;
  flex-direction: column;
}

.mycourses-index-page .section-my_courses .videosColumn .videos.line_view .video {
  display: flex;
  width: 100%;
}

.mycourses-index-page .section-my_courses .videosColumn .videos.line_view .video .video-img {
  margin-right: 20px;
}

.mycourses-index-page .section-my_courses .videosColumn .videos.line_view .video .description {
  display: block;
}


@-webkit-keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}

@keyframes placeHolderShimmer {
  0% {
    background-position: -468px 0;
  }
  100% {
    background-position: 468px 0;
  }
}

.mycourses-index-page .animated-background, .mycourses-index-page .text-line {
  -webkit-animation-duration: 1.25s;
  animation-duration: 1.25s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-name: placeHolderShimmer;
  animation-name: placeHolderShimmer;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  background: #F6F6F6;
  background: linear-gradient(to right, #F6F6F6 8%, #F0F0F0 18%, #F6F6F6 33%);
  background-size: 800px 104px;
  position: relative;
  height: 180px;
}


.mycourses-index-page .text-line {
  height: 10px;
  margin: 4px 0;
}

@media (min-width: 768px) {
  .mycourses-index-page .section-my_courses {
    margin: 40px 0;
  }
  .main-header .div-cart-account .btnHelp {
    width: 130px;
    font-size: 1rem;
  }
  .mycourses-index-page .section-my_courses .header-videos div:first-of-type {
    justify-content: flex-end;
  }
  .mycourses-index-page .section-my_courses .menuColumnCollapse {
    display: none;
  }
  .mycourses-index-page .section-my_courses .menuColumn.collapse:not(.show) {
    display: block;
    position: initial;
  }
}

@media (max-width: 768px) {
  .mycourses-index-page .section-courses .videos .video .name a {
    font-size: 2.3rem;
  }
}


/*@@@@@@@@@@@@@@@@@ PAGE MY COURSES END @@@@@@@@@@@@@@@@@*/

/*@@@@@@@@@@@@@@@@@ PAGE MY COURSE START @@@@@@@@@@@@@@@@@*/
.mycourses-view-page .logo{height: 40px;}
.mycourses-view-page .main-header{padding: 5px 0;}

.mycourses-view-page {background: #f2f2f2;}

.mycourses-view-page #mVideo {
  --video--width: 1296;
  --video--height: 540;
  position: relative;
  padding-bottom: calc(var(--video--height) / var(--video--width) * 100%); /* 41.66666667% */
  overflow: hidden;
  max-width: 100%;
  background: black;
}

.mycourses-view-page #mVideo iframe{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}



.mycourses-view-page .section-mycourse {
  /*height: 100vh;*/
  padding-top: 0;

  /*background-color: #0000000D;*/
  background-color: #ededed;
  display: flex;
  flex-direction: column;
  /*justify-content: center;*/
  /*align-items: center;*/
}


.mycourses-view-page h4 {
    /*font-size: 2rem;
    font-weight: 800;*/
  }

  .mycourses-view-page h4 span {
    color: #b8bbc3;
  }

  .section-info
  {
    display: flex;
    min-height: 500px;
    padding: 20px 10px 100px 10px;
    flex-direction: column;
  }

  .myebooks-view-page .section-info{
    padding-top: 120px;
    background-color: #0000000D;
  }


  .section-info #pills-tab {
    border-bottom: .6rem solid #ececec;
    padding-bottom: .8rem;
  }

  .section-info button.nav-link {
    background-color: transparent!important;
    color: var(--font-gray)!important;
    font-size: 1.4rem!important;
    text-transform: initial!important;
  }

  .section-info button.nav-link.active {
    color: var(--font-back)!important;
  }

  .section-info #pills-tab, .section-info #pills-comments {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-info .tab-content {
    margin-top: 40px;
  }


  .section-info .video-description,
  .section-info .course-content{
    font-size: 1.4rem;
  }
  .section-info .course-content{
    color: var(--font-gray);
  }

  .mycourses-view-page .accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #3a68a6;
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
  }


  .mycourses-view-page  .accordion-button:not(.collapsed)::after {
    filter: brightness(100);
  }
  .mycourses-view-page  .accordion-button:focus {
    box-shadow:none;
  }

  .mycourses-view-page .li-step {
    position: relative;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    font-size: 14px;
    margin-top: 1rem;
    z-index: 5;
  }
  .mycourses-view-page .li-step.active::after {background: var(--color-blue)!important;}


  .mycourses-view-page .li-step:not(:last-child)::after {
    content: "";
    left: 4px;
    width: 2px;
    top: 50%;
    height: calc(100% + 15px);
    background: var(--light-gray);
    position: absolute;
  }
  .mycourses-view-page .li-step:not(.active) button {background: var(--font-gray);}
  .mycourses-view-page .li-step button {
    position: relative;
    cursor: pointer;
    height: 4px;
    padding: 5px;
    border: 0px;
    border-radius: 50%;
    margin-right: 30px;
    flex-shrink: 0;
    z-index: 2;
    transition: box-shadow 0.2s ease 0s;
    background: var(--color-blue);
  }

  .mycourses-view-page .li-step:not(.active) a {
    color: var(--font-gray);
  }

  .mycourses-view-page .li-step.active a {
    color: var(--color-blue);
  }
  .mycourses-view-page .li-step > div {
    display: flex;
    flex-direction: column;
    -webkit-box-pack: justify;
    width: 100%;
  }

  .section-info #pills-comments h4 {
    margin-bottom: 2.5rem;
  }

  .section-info .comment {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
  }
  .section-info .comment button:focus{box-shadow: none;}

  .section-info .comment img {
    width: 3.3rem;
    height: 3.3rem;
    border-radius: 5rem;
    margin-right: 2.5rem;
  }

  .section-info .comment-info{width: 100%;}
  .section-info .comment-info h5{
    font-size: 1.6rem;
    font-weight: 600;
  }

  .section-info .comment-info h5 span{
    font-size: 1.25rem;
    font-weight: 600;
    color: #9fa4af;
  }

  .section-info .comment-info h5 i.fa-comments {
    color: var(--color-blue);
    margin-left: .8rem;
  }

  .section-info .comment-info p {
    color: var(--font-gray);
    font-size: 1.3rem;
    margin-bottom: 2rem;
  }

  .section-info .comment-info i {
    font-size: 1.8rem;
  }

  .section-info .comment-info i {
    color: #b8bbc3;
  }

  .section-info .comment-info i.voted {
    color: var(--font-black);
  }

  .section-info .comment-info i span {
    color: #b8bbc3;
    padding-left: .5rem;    
    font-size: 1.3rem;
  }

  .section-info .comment-info i.fa-comments {
    margin-left: 2rem;
  }

  .section-info .comment-info .accordion-item {
    border: 0;
    outline: 0;
  }

  .section-info .comment-info .accordion-button {
    border: 0;
    color: var(--color-blue);
    font-size: 1.3rem;
    padding-left: 1.25rem;
    padding-left: 2.5rem;
    margin-top: .8rem;
    text-transform: initial;
    background-color: transparent;
    box-shadow: none;
  }
  .section-info .comment-info .question-details:not(.show){
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .section-info .comment-info .accordion-button:hover {
    background-color: transparent;
  }

  .section-info .comment-info .accordion-button::before {
    content: 'Ocultar';
    margin-right: .35rem;
  }

  .section-info .comment-info .accordion-button.collapsed::before {
    content: 'Mostrar';
  }

  .section-info .comment-info .accordion-button::after {
    position: absolute;
    left: 0;
    background-image: none;
    width: 0;
    height: 0;
    border-top: .7rem solid var(--color-blue);
    border-left: .7rem solid transparent;
    border-right: .7rem solid transparent;
  }

  .section-info .comment-info .accordion-collapse > div {
    display: flex;
  }

  .section-info #pills-aux_material a,
  .section-info #pills-bonus_material a
  {
    background-color: transparent;
    color: var(--font-black);
    font-size: 1.4rem;
    text-transform: initial;
  }
  .section-info #pills-aux_material a i::before,
  .section-info #pills-bonus_material a i::before
  {
    content: '';
    padding: .4rem 1rem;
    background-image: url('../../images/icone-fichier-document-gris.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .section-info .list-aux_material {
    display: flex;
    gap: 2rem;
  }

  .section-info .list-aux_material img {
    height: 100%;
    object-fit: cover;
  }
/*@@@@@@@@@@@@@@@@@ PAGE MY COURSE END @@@@@@@@@@@@@@@@@*/


/*@@@@@@@@@@@@@@@@@ PAGE COURSES @@@@@@@@@@@@@@@@@*/

.product-list .header-pages {
  background-color: transparent;
  text-align: left;
}

.product-list .header-pages .breadcrumbs {
  margin: 0;
  padding: 0;
  max-width: 300px;
}
/*
.product-list .header-pages .row div:last-of-type {
    display: flex;
    align-items: flex-end;
}*/

.product-list .header-pages .list-categories {
  margin: 0;
  margin-top: 50px;
}

.product-list .header-pages .list-categories li {
  display: inline-block;
  padding-bottom: 20px;
  /*max-width: 20%;*/
}

.product-list .header-pages .list-categories li a {
  font-weight: 600;
  display: block;
  padding: 0 6px;
}

.product-list .header-pages .list-categories li a.active,
.product-list .header-pages .list-categories li a:hover {
  color: var(--font-black);
}

.product-list .section-products {
  padding: 20px 10px;
  margin-bottom: 40px;
}

.product-list .section-products h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.product-list .section-products .products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.product-list .section-products .products .product {
  transition: .3s;
}

.product-list .section-products .products .product a.prod-img {
  display: block;
}

.product-list .section-products .products .product a.prod-img figure {
  position: relative;
  margin-bottom: 20px;
}

.product-list .section-products .products .product a.prod-img figure .figure-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 6px 10px;
  background-color: #ededed;
  font-style: italic;
}

.product-list .section-products .products .product img {
  width: 100%;
  /*max-height: 420px;*/
  height: 490px;
  object-fit: cover;
  transition: .3s;
}

.product-list .section-products .products .product .info {
  text-transform: uppercase;
}

.product-list .section-products .products .product .info a {
  display: block;
}

.product-list .section-products .products .product h6 a {
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--font-black);
}

.product-list .section-products .products .product span a {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--font-gray);
}

.product-list .section-products .products .product span a:hover {
  color: var(--font-black);
}

.product-list .section-products .products .product .name a:hover,
.product-list .section-products .products .product h6 a:hover {
  color: var(--color-blue);
}

.product-list .section-products .products .product .name a {
  color: var(--font-black);
  font-size: 1.3rem;
  padding: 3px 0;
}

.product-list .section-products .products .product .price {
  font-weight: 500;
  color: #333333;
  font-size: 1.2rem;
}

.product-list .section-products .products .product .subscribe a {
  margin-top: 15px;
  color: var(--color-blue);
}

.product-list .section-products .products .product .subscribe:hover a {
  color: var(--font-black);
}

.product-list .old-price,
.product-view .old-price{
  color: #9b9b9b;
  font-weight: 400;
  text-decoration: line-through;
  margin-right: 2px;
  font-size: 1rem;
}

.product-view .old-price {font-size: 1.2rem;}

.product-list .discount-price,
.product-view .discount-price {
  display: inline-block;
  vertical-align: top;
  color: #fff;
  background: var(--color-blue);
  padding:  4px;
  border-radius: 5px;
  text-align: center;
  line-height: 8px;
  height: 15px;
  font-size: 1rem;
  font-weight: 700;
  text-transform: capitalize;
  text-align: center;
  z-index: 4;
  margin-left: 2px;
}


.product-view .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: #3a68a6;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,.125);
}


.product-view  .accordion-button:not(.collapsed)::after {
  filter: brightness(100);
}

.product-view .li-step {
  position: relative;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  font-size: 1.4rem;
  margin-top: 1rem;
  z-index: 5;
}



.product-view .li-step:not(:last-child)::after {
  content: "";
  left: 4px;
  width: 2px;
  top: 50%;
  height: calc(100% + 15px);
  background: var(--light-gray);
  position: absolute;
}
.product-view .li-step:not(.active) button {background: var(--font-gray);}
.product-view .li-step button {
  position: relative;
  cursor: pointer;
  height: 4px;
  padding: 5px;
  border: 0px;
  border-radius: 50%;
  margin-right: 30px;
  flex-shrink: 0;
  z-index: 2;
  transition: box-shadow 0.2s ease 0s;
  background: var(--color-blue);
}


.product-view .li-step:not(active) > div {
  display: flex;
  flex-direction: column;
  -webkit-box-pack: justify;
  color: var(--font-black);
  width: 100%;
}


.product-view .li-step.active > div * {
  color: var(--color-blue);
}

@media (min-width: 768px) {

  .product-list .section-products {
    padding: 60px 10px;
    margin-bottom: 0;
  }
  .product-list .section-products h3 {
    font-size: 1.4rem;
  }
  .product-list .section-products .products {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-list .section-products .products .product span a,
  .product-list .section-products .products .product h6 a {
    padding: 3px 0;
  }
}


/*@@@@@@@@@@@@@@@@@ PAGE COURSES END @@@@@@@@@@@@@@@@@*/


/*@@@@@@@@@@@@@@@@@ PAGE PRODUCT @@@@@@@@@@@@@@@@@*/

.product-view .header-pages .breadcrumbs {
  margin: 0;
}

.product-view .header-pages .row {
  justify-content: space-between;
  align-items: center;
}

.product-view .header-pages .navProducts {
  margin: 0;
  width: fit-content;
}

.product-view .header-pages .navProducts li {
  display: inline-block;
}

.product-view .header-pages .navProducts li a {
  color: var(--font-black);
  display: block;
  font-size: 1.4rem;
  border-radius: 100%;
  width: 30px;
  height: 30px;
  transition: .3s;
  line-height: 2.2em;
}

.product-view .header-pages .navProducts li a:hover {
  background-color: var(--color-blue);
  color: var(--font-white);
}

.product-view .section-product {
  background-color: var(--light-gray);
}

.product-view .section-product #carouselProducts {
  margin-bottom: 120px;
}

.product-view .section-product #carouselProducts .carousel-indicators {
  bottom: -100px;
}

.product-view .section-product #carouselProducts .carousel-indicators button {
  height: 60px;
  width: 25%;
}

.product-view .section-product #carouselProducts .carousel-indicators {
  margin: 0;
}



.product-view .section-product #carouselProducts .rows button {
  border-radius: 100%;
  width: 50px;
  height: 50px;
  color: var(--font-mediumblack);
  font-size: 1.6rem;
  line-height: 1em;
  top: -60px;
  background-color: white;
}

.product-view .section-product #carouselProducts .carousel-indicators button img {
  height: 100%;
  object-fit: cover;
}

.product-view .section-product #carouselProducts .rows button:hover {
  background-color: white;
  box-shadow: 6px 8px 15px #bbbbbb;
  color: var(--font-black);
}

.product-view .section-product {
  text-align: center;
}

.product-view .section-product h3 a {
  font-weight: 800;
  font-size: 3rem;
  color: var(--font-black);
}

.product-view .section-product .price {
  font-size: 2.4rem;
  color: var(--font-mediumblack);
  /*margin-top: 15px;*/
}

.product-view .section-product .payment {
  color: var(--color-blue);
  font-weight: 600;
  font-size: 1.3rem;
}

.product-view .section-product .description {
  margin-top: 10px;
  font-size: 1.4rem;
}

.product-view .section-product .subscribe {
  background-color: var(--color-blue);
  height: 35px;
  border-radius: 20px;
  display: block;
  text-align: center;
  transition: .3s;
  line-height: 3em;
  font-size: 1em;
  border: 0;
  font-weight: 600;
  color: var(--font-white);
  text-transform: uppercase;
  background-color: var(--color-blue);

  margin: 0 auto;
  margin-top: 25px;
}

.product-view .section-product .stars {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.product-view .section-product .stars ul li {
  display: inline-block;
  color: var(--color-blue);
}

.product-view .section-product .stars ul[data-stars='5'] li:nth-child(n+6) {
  color: var(--font-mediumblack);
}

.product-view .section-product .stars ul[data-stars='4'] li:nth-child(n+5) {
  color: var(--font-mediumblack);
}

.product-view .section-product .stars ul[data-stars='3'] li:nth-child(n+4) {
  color: var(--font-mediumblack);
}

.product-view .section-product .stars ul[data-stars='2'] li:nth-child(n+3) {
  color: var(--font-mediumblack);
}

.product-view .section-product .stars ul[data-stars='1'] li:nth-child(n+2) {
  color: var(--font-mediumblack);
}

.product-view .section-product .stars ul[data-stars='0'] li {
  color: var(--font-mediumblack);
}

.product-view .section-info {
  padding: 40px 10px;
}

.product-view .section-info .nav-pills {
  justify-content: center;
}

.product-view .section-info button.nav-link {
  background-color: transparent;
  color: var(--font-gray);
}

.product-view .section-info button.nav-link.active {
  color: var(--font-black);
}

.product-view .section-info .tab-content {
  margin-top: 40px;
}

.product-view .section-info .product-description {
  font-size: 1.4rem;
}

.product-view .section-info .product-content {
  margin-top: 40px;
}

.product-view .section-info .product-content h6 {
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 25px;
  font-family: 'montserrat', 'poppins', 'sans-serif'
}

.product-view .section-info .product-content ul {
  margin-left: 20px;
}

.product-view .section-info .product-content ul li {
  list-style-type: disc;
  font-size: 1.3rem;
  color: var(--font-gray);
  padding-bottom: 4px;
}

.product-view .section-info .product-content ul li::marker {
  color: var(--font-black);
}

/* ---- thumb */
.reviews-container .rating-group-thumbs{
  display: flex;
  justify-content: space-evenly;
  padding-top: 1em;
}

.reviews-container .rating__icon--thumb {
  color: inherit;
}

.reviews-container .rating__input:checked ~ .rating__icon--thumb {
  color: var(--color-blue);
}


.reviews-container  .rating__input {
  position: absolute !important;
  left: -9999px !important;
}


.reviews-container  .rating__input--none {
  display: none
}

/* set icon padding and size */
.reviews-container .rating__label {
  cursor: pointer;
  padding: 0 0.1em;
}


@media (min-width: 768px) {
  .product-view .header-pages .row {
    justify-content: flex-end;
  }
  .product-view .header-pages .navProducts {
    margin-left: 40px;
  }
  .product-view .section-product {
    text-align: left;
  }
  .product-view .section-product .subscribe {
    margin: 0;
    margin-top: 25px;
  }
  .product-view .section-product #carouselProducts {
    display: flex;
  }
  .product-view .section-product #carouselProducts .carousel-item img{
    max-height: 490px;
    object-fit: contain;
    object-position: center;
  }
  .product-view .section-product #carouselProducts .carousel-indicators {
    right: unset;
    left: 0;
    top: 0;
    height: 100%;
    max-width: 15%;
    display: flex;
    flex-direction: column;
    /*flex-wrap: wrap;*/
    margin: 0;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 0;
    overflow-y: hidden;
  }
  .product-view .section-product #carouselProducts .carousel-indicators button {
    height: 25%;
    /*width: 50%;*/
    width: 97px;
    max-width: 50%;
    background-color: transparent;
    border-radius: 0;
    margin: 0;
    box-sizing: unset;
    padding: 0;
    flex: auto;
    box-sizing: none;
  }


  /*  .product-view .section-product #carouselProducts .carousel-indicators button img {
        object-position: center;

    }*/
    .product-view .section-product #carouselProducts .carousel-inner {
      margin-left: 18%;
    }
    .product-view .section-product #carouselProducts .rows {
      width: 10%;
      position: relative;
      right: 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      margin-left: 15px;
      gap: 5px;
    }
    .product-view .section-product #carouselProducts .rows button {
      background-color: transparent;
      position: relative;
      top: initial;
    }
    .product-view .section-product .stars {
      justify-content: flex-start;
    }
    .product-view .section-info .tab-pane {
      min-height: 270px;
    }
    .product-view .section-info .contentTab {
      display: flex;
    }
    .product-view .section-info .product-description {
      width: 65%;
      font-size: 1.4rem;
      padding-right: 80px;
    }
    .product-view .section-info .product-content {
      width: 35%;
    }
  }

  @media (min-width: 1200px) {
    .product-view .section-info .container {
      max-width: 960px;
    }
    .product-view .section-product .info {
      margin-left: 70px;
    }
  }


/*@@@@@@@@@@@@@@@@@ PAGE PRODUCT END @@@@@@@@@@@@@@@@@*/


/*@@@@@@@@@@@@@@@@@ STAR RATING @@@@@@@@@@@@@@@@@*/
.star.star-blue{
  color: #3869a5;
}

.review-summary-row .review-summary-widget{
  flex-direction: row!important;

}

@media (min-width: 768px){
  .review-summary-row .review-summary-widget {
    flex: 0 0 auto;
    width: auto;
  }
}
/*@@@@@@@@@@@@@@@@@ STAR RATING END @@@@@@@@@@@@@@@@@*/

