@import url('https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --white: #ffffff;
  --black: #000000;
  --grey: #333333;
  --pink: #f62afe;
  --purple: #693ff4;
  --lightblue: #73fffc;
  --darkblue: #081121;
  --gradient: linear-gradient(135deg, rgb(254, 42, 246) 0%, rgb(105, 63, 244) 50%, rgb(115, 255, 252) 100%);
} 
html, body{
  margin: 0;
  padding: 0 !important;
  font-family: "Urbanist", serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  overflow-x: hidden !important;
}
a:hover {
  color: var(--black);
} 
/* header */
.header {
  background-image: url('/img/header_bg.jpg');
  padding: 30px 0 0 0;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: left !important;
  position: relative;
}
.header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
  z-index: 1;
}
.whiteBox{
  background: linear-gradient(120deg, rgba(255, 255, 255, 1) 84%, rgba(255, 255, 255, 0) 84%);
  color: var(--purple);
  max-width: 640px;
  padding: 30px;
  margin: 40px 0 30px;
}
.darkBox{
  width: 260px;
  padding: 12px 0;
  background-color: var(--purple);
  margin-bottom: 10px;
}
.darkBox p{
  font-size: 24px;
  text-align: center;
  width: 100%;
  font-weight: 700;
  margin: 0;
} 
.header .container {
  position: relative;
  z-index: 2;
}
.header-txt {
  margin: 80px 0 100px 0;
  color: var(--white);
}
.header-txt h6 {
  font-size: 22px;
  line-height: 1.1;
  margin: 0;
  font-weight: 500;
}
.header-txt h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.1;
} 
.header-img {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 30px 0 0 0;
}
.header-img img:first-of-type {
  max-width: 160px;
}
.header-img img:last-of-type {
  max-width: 130px;
  margin-left: 40px;
} 
/* form */ 
.form-box {
  position: relative;
  min-height: 350px;
}
#contactform { 
  border-radius: 30px;
  padding: 30px 40px;  
  margin: 0 0 0 auto;
  text-align: center; 
}
#contactform h3 {
  font-size: 30px;
  font-weight: 700;
  color: var(--darkblue);
}
#contactform hr {
  width: 150px;
  height: 4px;
  margin: 0 auto 30px auto;
  opacity: 1;
  border: 0;
  border-radius: 20px;
  background: var(--gradient);
}
.form-inputs {
  text-align: center;
  margin: 0 0 10px 0;
}
.form-inputs input, .form-inputs select {
  width: 100%;
  height: 50px;
  border-radius: 20px;
  font-size: 16px;
  border: 1px solid var(--darkblue);
  color: var(--grey);
  padding: 0 0 0 20px ;
  text-align: left !important;
  -webkit-appearance: none;
}
.form-inputs input:focus-visible, .form-inputs select:focus-visible {
  outline: 1px solid var(--pink);
  border: 1px solid var(--pink);
}
::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
:-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}
::-moz-placeholder {
  color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}
:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.5);
}
::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.form-check {
  margin-top: 5px;
  padding: 0;
}
.form-check label {
  margin: 0;
  position: relative;
  padding-left: 20px;
  cursor: pointer;
  line-height: 1;
  color: var(--grey);
  font-size: 10px;
  font-weight: 300;
}
.form-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkmark {
  position: absolute;
  top: -1px;
  left: 0;
  height: 12px;
  width: 12px;
  background-color: transparent;
  border: 1px solid var(--grey);
  border-radius: 2px;
  padding-right: 2px;
  color: var(--grey);
}
.form-check input[type=checkbox]:checked + .checkmark::after {
  content: "\2713";
  display: block;
  text-align: center;
  line-height: 12px;
  margin-left: 0px;
  margin-top: 0px;
  font-size: 14px;
}
#politica-link {
  color: var(--grey);
  font-weight: 700;
  text-decoration: none;
}
#politica-link:hover {
  color: var(--pink);
  text-decoration: underline;
}
.form-button {
  width: 280px;
  height: 53px;
  border-radius: 20px;
  background: var(--pink);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  border: none;
  line-height: 1;
  margin: 20px auto 0 auto;
  transition: all 0.6s ease;
}
.form-button:hover {
  transform: scale(1.05);
  background: var(--purple);
  color: var(--white);
}
.terms-text label[for="terms"]{
  display: flex;
  align-items: center;
}
.error, #terms-error {
  font-size: 11px;
  font-weight: 300;
  color: red;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0;
}
.modal-content{
  width: 100%;
}
/* message */
.message-box {
  background: var(--white);
  border-radius: 30px;
  padding: 30px 40px;
  width: 420px;
  min-height: 300px;
  margin: 0 0 0 auto;
  text-align: center;
  box-shadow: 0 0 15px 0px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.message-box h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--purple);
  line-height: 1.2;
  margin: 0 auto 20px auto;
}
.message-box p {
  font-size: 18px;
  max-width: 90%;
  margin: 0 auto;
  line-height: 1.2;
}
/* section1 */
.section1 {
  background-color: #afbacd1c;
  text-align: center;
  padding: 50px 0;
}
.title h3 {
  font-size: 45px;
  font-weight: 700;
  color: var(--darkblue);
}
.title hr {
  width: 220px;
  height: 4px;
  margin: 10px auto;
  border-radius: 20px;
  opacity: 1;
  border: none;
  background: var(--gradient);  
}
  /* dropdown */ 
  .dropdown {
    position: relative;
    display: inline-block; 
  }

  .dropdown button {
    padding: 10px;
    background-color: var(--pink);
    color: white;
    border: none;
    cursor: pointer; 
    width: 100%;
    max-width: 300px;
  } 
  .dropdown ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    background: white;
    border: 1px solid #ccc;
    width: 250px;
    display: none;
    z-index: 1000;
    cursor: pointer;
  }

  .dropdown ul li {
    padding: 10px;
    cursor: pointer;
    font-weight: 600;
    border-bottom: 1px solid var(--purple);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
  }
  .dropdown ul li img{
      width: 35px; 
  }
  .dropdown ul li:last-child{
      border: none;
  }

  .dropdown ul li:hover {
    background: #f0f0f0;
    color: var(--purple);
    font-weight: 700;
    text-decoration: underline;
  }
  .dropdown ul li:hover img{ 
      filter: brightness(0) saturate(100%) invert(42%) sepia(78%) saturate(6135%) hue-rotate(244deg) brightness(92%) contrast(109%);
  }
/* Course List CSS */
#courseList{
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  margin-top: 40px;
}
.card.course{
  border: none;
  border-radius: 0;
  background-color: transparent;
}
.card-form{
  padding: 25px 0 0;
}
.course .card-body{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.course button{
  margin-top: auto;
}
.card-title{
  font-weight: 700;
  font-size: 22px;
  color: var(--purple);
}
.card-body h6 {
  font-weight: 700;
  color: var(--darkblue);
  font-size: 16px;
}
.course .btn-primary{
  margin-top: 15px;
  background-color: var(--purple); 
}
.course .btn-primary:hover{ 
  background-color:  var(--pink);
}
.course .card_badge{
  position: absolute;
  width: 65px;
  height: 65px;
  object-fit: contain;
  bottom: 0;
  right: 0;
}
.course .list-group{
  display: flex;
  justify-content: flex-start;
  height: 55%;
}
.course .list-group-item{
  background-color: transparent;
  font-size: 14px;
}
.course .list-group-item a{
  text-decoration: underline;
  color: var(--pink);
  cursor: pointer;
  font-weight: 700;
}
.course .list-group-item:only-child{
  display: inline-block;
  border-bottom: 1px solid #dee2e6; 
}
.course .list-group-item a:hover {
  color: var(--purple);
}
/* Term */
.containerCheck {
  cursor: pointer;
  margin-right: 5px;
}

.containerCheck input {
  display: none;
}

.containerCheck svg {
  overflow: visible;
}

#faqAccordion .card-header button {
  white-space: normal;
  text-wrap: wrap;
  text-align: left;
}

.closeModal {
  position: absolute;
  cursor: pointer;
  left: 100%;
  top: 0%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--purple);
  color: #FFF;
  border: none;
  padding-bottom: 5px;
  outline: none;
  z-index: 100;
  width: 35px;
  height: 35px;
  border-radius: 10px;
  font-size: 20px;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.25));
  transform: translate(-100%, -50%);
}

.path {
  fill: none;
  stroke: var(--pink);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke-dasharray 0.5s ease, stroke-dashoffset 0.5s ease;
  stroke-dasharray: 241 9999999;
  stroke-dashoffset: 0;
}

.containerCheck input:checked~svg .path {
  stroke-dasharray: 70.5096664428711 9999999;
  stroke-dashoffset: -262.2723388671875;
}
.saidas {
  background-color: #F6F6F6;
  border-radius: 25px;
  padding: 20px 0 0;
  margin-top: 70px;
}

.saidas h1 {
  font-weight: 400;
  text-align: left;
  font-size: 30px;
  width: 100%;
}

.saidas p {
  max-width: 370px;
  margin: auto;
}

.saidas h1 span {
  font-weight: 700;
  border-bottom: 3px solid var(--color-blue);
  color: var(--color-orange);
}

.saidas .content {
  display: flex;
  margin-bottom: 10px;
}

.saidas .content:hover {
  scale: 1.1;
}
.saidas h2{
  font-size: 30px;
  font-weight: 700;
  text-align: left;
}
.saidas hr{
  width: 100%;
}
.saidas .content h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 50px;
  line-height: 75px;
  color: var(--gradient);
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: 100%;
  max-width: 90px;
}
.section1.ty{
  padding: 70px 0;
}
.saidas .content p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  text-align: left;
  line-height: 1.1;
  color: #263039;
  width: 100%;
  max-width: 250px;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
/* Course modal css */
#courseModal.show{
  display: flex !important;
  align-items: center;
} 
#courseModal .modal-body{
  padding: 0;
}
#courseModal #courseImage{
  border-top-left-radius: 10px;
}
#courseModal .modal-dialog{
  max-width: 800px;
}
#courseModal h5{
  color: var(--purple);
}
#courseModal h4{
  font-size: 24px;
  font-weight: 600;
  color: var(--darkblue);
}
#courseModal h2{
  font-weight: 700;
  color: var(--darkblue);
}
#Politica{
 z-index: 2000;
}
/* Accordion */
.accordion-button {
  font-size: 18px;
  color: var(--darkblue);
  padding: 20px 20px 20px 0;
}
.accordion-button:not(.collapsed) {
  font-weight: 700;
  color: var(--purple);
}
.accordion-button:not(.collapsed), .accordion-button:focus {
  background: transparent;
  box-shadow: none;
}
.accordion-body {
  text-align: left;
  padding: 10px 20px;
} 
/* section3 */
.section3 {
  padding: 100px 0 80px;
}
.sec3-img {
  text-align: center;
}
.sec3-img img {
  width: 100%;
}
.sec3-txt h5 {
  font-size: 50px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-weight: 700;
  margin: 30px 0 20px 0;
}
.sec3-txt p {
  text-align: center;
  font-size: 24px;
  line-height: 1.1;
  max-width: 80%;
  margin: 15px auto;
}
/* section2 */
.section4 {
  padding: 30px 0;
  text-align: center;
}
.section4 .container {
  padding: 70px 30px;
  border-radius: 50px;
  background: var(--darkblue);
  margin: 0 auto;
  max-width: 90%;
  color: var(--white);
}
.section4 .title h3 {
  color: var(--white);
}
.title p {
  font-size: 18px;
  max-width: 70%;
  margin: 0 auto;
  line-height: 1.2;
}
.partner-wrapper {
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}
.partner-slider::before, .partner-slider::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 4;
}
.partner-slider::before {
  left: 0;
  background: linear-gradient(to right, rgba(8, 17, 33, 1), rgba(255, 255, 255, 0));
}
.partner-slider::after {
  right: 0;
  background: linear-gradient(to left, rgba(8, 17, 33, 1), rgba(255, 255, 255, 0));
}
.logo-outer {
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 150px;
}
.logo-outer img {
  width: 220px;
  margin: 0 auto;
  transition: all 0.6s ease;
  cursor: pointer;
}
.logo-outer img:hover {
  transform: scale(1.05);
}
/* footer */
.footer {
  border-bottom: 4px solid; /* Set the border thickness */
  border-image: linear-gradient(135deg, rgb(254, 42, 246) 0%, rgb(105, 63, 244) 50%, rgb(115, 255, 252) 100%);
  border-image-slice: 1; 
  padding: 50px 0 0 0;
}
.footer-txt h3 {
  font-size: 38px;
  color: var(--darkblue);
  font-weight: 700;
  line-height: 1.2;
  max-width: 90%;
}
.footer-txt button {
  width: 280px;
  height: 53px;
  border-radius: 20px;
  background: var(--pink);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  border: none;
  line-height: 1;
  margin: 20px auto 0 auto;
  transition: all 0.6s ease;
}
.footer-txt button:hover {
  transform: scale(1.05);
  background: var(--purple);
  color: var(--white);
}
.footer-img {
  text-align: center;
}
.footer-img img {
  height: 400px;
  margin: 0 0 0 auto;
}
/* Adstartegy */
#section-ads {
  text-align: center;
  padding: 30px 0;
}
/* Media Queries */
@media only screen and (min-width: 1700px) {
  .sec2-img img {
    max-width: 85%;
  }
  .sec2-txt p, .sec3-txt p {
    font-size: 20px;
  }
}
@media (max-width: 1440px){
  .form-button{
    width: 100%;
  }
}
@media only screen and (max-width: 1200px) {
  .footer-txt h3 {
    font-size: 32px;
  }
  .whiteBox{
      background: linear-gradient(116deg, rgba(255, 255, 255, 1) 89%, rgba(255, 255, 255, 0) 89%);
      padding: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .spots-counter {
    right: -80px;
  }
  .message-box {
    width: 100%;
  }
  #contactform {
    right: -80px;
    width: 380px;
  }
  .header-txt h1 {
    font-size: 40px;
    text-align: left;
  }
  .whiteBox h3{
      text-align: left;
  }
  .header-txt p {
    font-size: 16px;
    max-width: 90%;
  }
  .header-txt {
    margin: 50px 0 200px 0;
  }
  .title h3 {
    font-size: 30px;
  }
  .title p {
    font-size: 16px;
  }
  .footer-txt h3 {
    font-size: 30px;
    max-width: 98%;
  }
  .sec2-txt h3, .sec3-txt h3 {
    font-size: 35px;
  }
  .sec2-txt p, .sec3-txt p {
    font-size: 14px;
  }
}
@media only screen and (max-width: 880px) {
  .spots-counter {
    right: -40px;
    min-width: 150px;
  }
  #contactform {
    right: -40px;
  }
}
@media only screen and (max-width: 800px) {
  .spots-counter {
    right: -20px;
    min-width: 120px;
  }
  #contactform {
    right: -20px;
    width: 360px;
  }
  #counter2 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 768px) {
  .nav {
    padding: 20px 0;
  }
  .nav-logo img {
    max-width: 100px;
  }
  .header {
    text-align: center;
  }
  .header-txt {
    margin: 20px 0 40px 0;
  }
  .header-txt p {
    font-size: 18px;
    max-width: 80%;
    margin: 20px auto;
  }
  .header-img {
    justify-content: center;
  }
  #contactform {
    position: relative;
    top: unset;
    right: unset;
    margin: 0 auto 0 auto;
    width: 90%;
  }
  .course-offer p {
    text-align: left;
  }
  .section2, .section3, .footer {
    text-align: center;
  }
  .section2 .row {
    flex-direction: column-reverse;
  }
  .sec2-img img, .sec3-img img {
    width: 350px;
    margin-top: 40px;
  }
  .sec2-txt h3, .sec3-txt h3 {
    font-size: 40px;
  }
  .footer-img img {
    height: auto;
    width: 350px;
    margin-top: 40px;
  }
  .footer-txt h3 {
    width: 100%;
  }
}
@media only screen and (max-width: 550px) {
  .footer-txt h3 {
    max-width: 85%;
    margin: 0 auto;
  }
    #contactform{
      padding: 0;
    }
  .terms-text{
    font-size: 14px;
  }
  .sec2-img img, .sec3-img img, .footer-img img{
    width: 95%;
  }
  .title p {
    max-width: 100%;
  }
  .header-img img:first-of-type {
    width: 150px;
  }
  .header-img img:last-of-type {
    width: 90px;
  }
  .header-txt h1 {
    font-size: 45px;
  }
  #contactform{
    width: 80%;
  }
}
@media only screen and (max-width: 475px) {
  .form-button {
    width: 100%;
  }
  .header-txt p {
    margin: 0 auto;
    max-width: 90%;
  }
  .course-offer p {
    font-size: 13px;
  }
  .section1 {
    padding: 40px 20px;
  }
  .course-offer p:last-of-type br {
    display: none;
  }
  .logo-outer img {
    width: 200px;
  }
  .footer-txt h3 {
    max-width: 100%;
  }
  .header-txt p {
    font-size: 14px;
  }
  .header {
    padding: 30px 0 0 0;
  }
  .header-txt h1{
    font-size: 30px;
  }
  .whiteBox{
    max-width: 350px;
    margin: 0 auto 20px;
    background: white; 
  }
  .whiteBox h1{
      font-size: 34px;
      text-align: center;
  }
  .whiteBox h3{
      font-size: 18px;
      text-align: center;
  }
  .darkBox{
    margin: 0 auto 20px; 
    width: auto;
    max-width: 180px;
  } 
  .mob-flex{
      display: flex;
  }
  .darkBox:last-child{
      width: 120px;
  }
  .header{
      padding: 20px 0;
      background-position: 70% !important;
  }
  .header-txt p{
    font-size: 22px;
    line-height: 1.1;
  }
  .header .img-fluid{
      margin-bottom: 160px;
  }
  .header-txt{
      margin: 20px 0 0 0;
  }
}
@media only screen and (max-width: 375px) {
  .header-txt h1 {
    font-size: 40px;
  }
  .header-txt p {
    max-width: 100%;
  }
  .title h3 .sec2-txt h3, .sec3-txt h3 {
    font-size: 35px;
  }
  .vision-txt p {
    font-size: 16px;
  }
  .accordion-body p, .accordion-body ul {
    font-size: 16px;
  }
  .sec3-txt {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 335px) {
  #contactform {
    width: 100%;
    padding: 30px 15px;
  }
}