@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy-Bold'), url('/fonts/gilroy/Gilroy-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy-Medium'), url('/fonts/gilroy/Gilroy-Medium.ttf') format('truetype');
    font-weight: 500; /* Typically, medium weight is around 500 */
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy-Light'), url('/fonts/gilroy/Gilroy-Light.ttf') format('truetype');
    font-weight: 300; /* Light weight is typically around 300 */
    font-style: normal;
}
 
@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy-Regular'), url('/fonts/gilroy/Gilroy-Regular.ttf') format('truetype');
    font-weight: normal; /* Normal weight is typically around 400 */
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy-ExtraBold'), url('/fonts/gilroy/Gilroy-ExtraBold.ttf') format('truetype');
    font-weight: 800; /* ExtraBold weight is typically around 800 */
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: local('Gilroy-Black'), url('/fonts/gilroy/Gilroy-Black.ttf') format('truetype');
    font-weight: 900; /* Black weight is typically around 900 */
    font-style: normal;
}

section:not(.banner){
	padding-top: 50px;
}

body{
	font-family: 'Gilroy';
	font-weight: 500;
	overflow-x: hidden !important;
}

:root{
	--color-orange: #EF6918;
	--color-blue: #004493;
	--titleFontSize: 35px; 
}
::placeholder{
    color: #212529 !important;
}
section.banner{
	background-color: #2C2C2C; 
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}
.banner img{
    width: 70%;
    max-width: 250px;
    margin: 25px 0 30px;
}
.btn-secondary{
    width: 100%;
}
.bannerText{
	max-width: 600px;
	line-height: 1.3;
	font-size: 30px;
} 
.bannerSlickSlider img{
	object-fit: contain;
}
/**
.blueBG{
	background-color: var(--color-blue);
	border-radius: 30px;
	padding: 8px 8px;
	white-space: nowrap;
}*/
.blueBG{
    font-weight: 700;
	white-space: nowrap;
	/*border: 1px solid #f6f6f6;*/
	border-radius: 10px;
    color: var(--color-orange); 
}
section.nav{
    padding: 15px 0; 
}
.nav a{
    color: var(--color-orange);
    font-size: 18px;
    margin-left: 25px;
}
.nav a:hover{
    cursor: pointer;
    text-decoration: underline !important;
}
.nav .img-fluid{
    max-height: 45px;
    min-height: 60px;
}
.galleryMob{
	display: none !important;
}
.gallery .slick-list, .galleryMob .slick-list{
	min-height: 400px;
	max-height: 450px;
} 
.gallery .slick-list img{
	border-radius: 15px;
	margin-top: 20px;
	height: 200px;
	width: 100%;
	object-fit: cover;
	object-position: top;
}
.banner button{
	color: #FFF;
	text-align: center; 
	font-family: 'Gilroy';
	font-size: 25px;
	width: 170px;
	margin-top: 25px;
	border: none;
	min-height: 60px;
	font-style: normal;
	font-weight: 300;
	line-height: 45px; /* 180% */
	border-radius: 10px;
	background: var(--color-orange);
	transition: all 0.7s ease;
}

/*Section 1 CSS*/ 
section.section1{
	padding: 80px 0 80px;
}
.sectionTitle h1{
	text-align: center;
	font-size: var(--titleFontSize);
	font-weight: 700;
}
.blueTxt{
	color: var(--color-blue);
}
.card-body{
    display: flex;
    flex-direction: column;
    height: 100%;
}
.card-body p{
    font-size: 14px;
}
/*Slider stuff*/
.partners{
    margin-top: 40px;
	width: 100%;
}
.partners img{     
	fill: #9E9E9E !important;
	max-width: 250px;
	max-height: 100px; 
	width: 200px;
	height: 150px;
	padding: 20px 50px;
}  
.partner-logo, .icon-button img {
	max-height: 25px;
	max-width: 25px;
	transition: transform 0.3s ease, filter 5.3s ease;
} 
#navSection .icon-button:active img, #navSection .icon-button:focus img {
	filter: contrast(1.1) saturate(1.1) brightness(1.2); 
}
.partner-logo:hover {
    transform: scale(1.1);
    filter: contrast(1.3);
}
/* CURSOS TYPE NAV: */
#navSection{
	max-width: 1400px;
	margin: 50px auto;
}
#navSection .row{
	margin: 0;
}
#navSection .icon-button{
	width: auto;
	height: 50px;
	margin: 5px;
	padding: 2px 10px;
	border-radius: 10px;
	background-color: #F9F9F9;
	color: #000;
	border: 1px solid var(--color-orange);
	font-weight: 500;  
	transition: all 0.3s ease;
}
#navSection .icon-button:hover, 
#navSection .icon-button:active, 
#navSection .icon-button:focus,
#navSection .icon-button.active{ 
	 background-color: var(--color-orange);
	 color: #fff;
} 
#navSection .icon-button img{
	transition: all 0.3s ease;
}
#navSection .icon-button:hover img,
#navSection .icon-button:active img,
#navSection .icon-button:focus img,
#navSection .icon-button.active img{
	filter: brightness(0) invert(1);
}
/*Course CSS*/
.course-card{
	max-width: 300px;
	height: min-content;
	min-height: 100%;
	border-radius: 30px;
	background-color: #f6f6f6;
	transition: all 0.7s ease;
	border: none;
}
.course-card:hover{
	box-shadow: 0px 5px 5px 0px rgba(0, 0, 0, 0.25);
}
.course-card .no-gutters{
	min-height: 480px;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.course-card {
    animation: fadeIn 0.5s ease-out;
}
.card-img{
	border-radius: 30px;
	background: #D9D9D9;
	width: 100%;
	transition: all 0.7s ease;
}
.card-img:hover{
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); 
}
a.card-text{
	color: #01A8E6 !important;
	text-decoration: underline !important;
	font-size: 12px;
	font-weight: 700;
}
h5.card-title{
	color: #004493;
	font-size: 20px;
	font-weight: 700;
    width:100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; 
}
.card-text img{
	vertical-align: text-top;
} 
.cursoDesc{
line-height: 1.1;	
font-size: 12px;
margin-bottom: 5px;
}
.Online{
	width: 115px;
	background-image: url(/img/icons/etiquetaOnline.svg);
}
.Novo{
	width: 65px;
	background-image: url(/img/icons/etiquetaNovo.svg);
}
select.form-control:not([size]):not([multiple]){
    appearance: none;
	background-image: url(/img/icons/accordionArrow.svg);
	background-size: 10px;
	background-position: calc(100% - 10px);
	background-repeat: no-repeat;
}
.etiquetasExt{ 
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	cursor: pointer;
	font-size: 12px;
	padding-top: 4px;
	text-align: center;
	text-transform: uppercase;
	color: #fff;
	font-family: 'Gilroy';
	height: 25px;
	position: absolute;
	left: 0;
	translate: 0% 100%;
	font-weight: 700;
}
.etiquetasInt{
	font-size: 12px;
	font-weight: 700; 
	width: fit-content;
	cursor: pointer;
	padding: 5px;
	background: rgba(1, 168, 230, 0.15);
}
.course-card button{
	display: block;
	color: #FFF;
	width: 170px;
	height: 40px;
	border-radius: 50px;
	background: var(--color-blue);
	font-size: 18px;
	font-weight: 400;
	text-align: center;
	margin: auto auto 0 auto;
	border: none;
	transition: all 0.3s ease;
	padding: 5px 0 0 0;
	color: #fff;
}
button:focus{
	outline: none;
}
.course-card button:hover{
	scale: 1.1;
	background: var(--color-orange);
}
button{
	cursor: pointer;
}
.moreCoursesBtn{
	width: 225px;
	height: 60px;
	border-radius: 10px;
	background: var(--color-orange);
	border: none; 
	padding-top: 5px;
	color: #FFF;
	font-size: 22px;
	font-weight: 400;
	margin-top: 25px;
	transition: background-color 0.7s ease;
}
.moreCoursesBtn:hover, #subSubmitBtn:hover, .banner button:hover{ 
	background-color: var(--color-blue);
}
/*Course modal CSS!*/
.modal.fade.in{
	background: rgba(0,0,0, 0.50);
}
.modal-static {
    display: block !important; 
}
.modal-backdrop {
    z-index: 1040 !important; /* Ensure the backdrop stays under the modal */
}
.modal {
    z-index: 1050; /* Increment for stacking */
}
.modal.show + .modal-backdrop {
    z-index: 1045; /* Ensure the new backdrop is between the modals */
}
#courseModal .modal-dialog{
	max-width: 900px;
	max-height: 700px;
	border: none;
}
#courseModal .modal-content{
	border-radius: 20px;
}
#courseModal .modal-body{
	padding: 0; 
}
.modal.fade.in .modal-dialog{
	transform: translate(0, 0);
}
#courseModal .card-img{
	width: 100%;
	object-fit: cover;
	height: 100%;
	border-radius: 20px 0 0 0;
}
#courseModal h1 {
	margin-top: 15px;
	color: var(--color-blue);
	font-size: 30px;
	font-weight: 700;
	max-width: 95%;
}
#courseModal p {
	font-size: 14px;
	font-weight: 400;
	max-width: 90%;
}
#courseModal span, .formContainer span{
	font-weight: 700;
} 
.bottomCourseDescription{
	font-size: 16px;
}
.bottomCourseDescription span{
	text-transform: none !important;
}
label.error{
    color: red;
    font-size: 12px;
    margin-top: -10px;
    translate: 5px -10px;
    margin-bottom: 0;
}
form{
	display: flex;
	flex-direction: column;
	max-width: 90%;
}
form .form-control{
	border-radius: 50px;
	border: 1px solid #d9d9d9;
	background: #FFF;
	margin-bottom: 10px;
}  
button#sub{
	background-color: var(--color-orange);
	width: 170px;
	height: 40px;
	margin: 5px auto 15px auto;
	border-radius: 50px;
	border: none;
}
.formContainer{
	margin: auto;
	border-radius: 0 0 20px 20px;
	width: 100%;
	background-color: #F6F6F6;
}
.formContainer h5{
	margin: 20px 0;
	font-size: 18px;
	text-align: center;
	color: var(--color-orange);
	font-weight: 400;
} 
#courseModal ul{
	padding-left: 15px;
	list-style-image: url(/img/icons/listIcon.svg);
}
.terms-text label, .terms-text a{
	color: #646667;
}
.terms-text label.error{
    color: red;
}
.terms-text label{
	font-size: 13px;
	font-weight: 400;
	margin-bottom: 0;
}
.terms-text a{
	font-weight: 500;
	text-decoration: underline;
}
.terms-text{
	text-align: center;
	margin-bottom: 10px;
}
.terms-text .path{
  stroke: #646667;
}
.ty-page .bannerText{
    font-size: 45px;
}
#courseModal li{
	font-size: 14px;
	font-weight: 400;
}
/*Vantagens CSS*/
#vants{
	margin-top: 75px;
	background: #F6F6F6;
	padding-bottom: 65px;
}
#faq{
    margin-bottom: 80px;
    padding-top: 20px;
}
#vants h1, #faq h1{
	font-size: 33px;
	text-align: center;
	font-weight: 700;
	margin-bottom: 15px;
}
#vants h1 span, #faq h1 span{
	color: var(--color-blue);
}
#vants p{
	font-size: 18px;
	font-weight: 400;
	text-align: center;  
	margin: auto;
}
#vants img{
	display: block;
	margin: 50px auto 15px;
}

/*FAQ */
/*Bootstrap override, because it's v4.0.0 and buggy*/
.in{
	display: block;
	opacity: 1;
}
/* General styles for accordion */
#faqAccordion .accordion-item {
	margin: 0 auto 10px;
	max-width: 1300px;
	border-radius: 10px;
	border: none;
}

#faqAccordion .accordion-header {
	cursor: pointer;
}

#faqAccordion .accordion-header button {
	color: #000;
	font-size: 24px;
	text-decoration: none;
	background: none; 
	box-shadow: none; 
	border: none; 
}
.accordion-button:not(.collapsed)::after, 
#faqAccordion .accordion-button.collapsed:hover::after{
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}
.accordion-button::after{
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23EF6918'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")
}
#faqAccordion .accordion-button.collapsed:hover {
	background-color: #ef6a18b7;
	transition: all 0.3s ease;
	border-radius: 10px;
	color: #fff;
}

#faqAccordion .accordion-header {
	border-radius: 10px;
	background-color: #f6f6f6; 
	background-repeat: no-repeat;
	background-size: auto;
	background-position: 95%;
}

#faqAccordion .accordion-button:not(.collapsed) {
	background-color: #ef6a18; 
	color: #fff;
	border-radius: 10px; 
	background-position: 95%;
}

#faqAccordion .accordion-body {
    background-color: #f6f6f6;
    border-radius: 10px;
    margin-top: 10px;
	font-size: 20px;
	color: #333;
	line-height: 1.5;
}
.accordion-body p{
    margin: 0;
}
/*FooterCTA*/
#footerCTA{
	background-color: #2C2C2C;
	padding: 30px 0 20px;
	color: #FFF;
}  
#footerCTA h1{
	font-size: 30px;
	font-weight: 700;
}
#footerCTA p{
	font-weight: 400;
	font-size: 18px;
}
.subscribe{
    display: flex; 
    flex-direction: row;
    align-items: center;
}
.subscribe label{
	font-size: 15px;
	font-weight: 400;
} 
.coolinput {
  display: flex;
  flex-direction: column; 
  position: static;
  width: 80%;
  max-width: 400px;
}

.coolinput label.text {
  font-size: 0.75rem;
  color: #fff;
  font-weight: 700;
  position: relative;
  top: 0.5rem;
  margin: 0 0 0 7px;
  padding: 0 3px;
  background: #2C2C2C;
  width: fit-content;
}

.coolinput input[type=text].input {
  padding: 15px 10px;
  margin-right: 15px;
  font-size: 16px;
  border: 1px #fff solid;
  border-radius: 10px;
  background: transparent;
  color: #fff;
}

.coolinput input[type=text].input:focus {
  outline: none;
}
 #subEmail{
	background-color: transparent; 
	width: 295px;
	height: 50px;
	border-radius: 10px;
	border: 1px solid #fff;
	padding-left: 20px;
	font-weight: 300;
	font-size: 20px; 
	color: #FFF;
} 
.subscribe input::placeholder{
	padding-top: 10px;
	font-weight: 300;
	font-size: 20px; 
	color: #FFF !important;
} 
.subscribeCheck{
	margin-top: 15px; 
}
.subscribeCheck input{
	background-color: transparent;
}
.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%;
		background-color: var(--color-orange);
		color: #FFF;
		border: none;
		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: white;
	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;
  }
  #subSubmitBtn{
	background-color: var(--color-orange);
	border-radius: 10px;
	width: 100%;
	min-width: 230px;
	max-width: 230px;
	height: 50px;
	padding-top: 5px;
	border: none;
	margin-top: auto;
	color: #FFF;
	text-transform: uppercase;
	font-size: 22px;
	font-weight: 400; 
	transition: all 0.7s ease;
  }
      .navbar-toggler {
        border: none;
        background-color: transparent;
    }
    
    .navbar-toggler-icon {
        width: 25px;
        height: 2px;
        background-color: black;
        display: block;
        position: relative;
    }
    
    .navbar-toggler-icon::after,
    .navbar-toggler-icon::before {
        content: '';
        width: 25px;
        height: 2px;
        background-color: black;
        display: block;
        position: absolute;
    }
    
    .navbar-toggler-icon::before {
        top: -6px;
    }
    
    .navbar-toggler-icon::after {
        top: 6px;
    }
    #navbarMenu {
    display: none;
    transition: all 0.3s ease;
    }
     .navbar-toggler:focus{
         box-shadow: none;
     }
    #navbarMenu.show {
        display: block;
    }
	.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 .content h3 {
		font-style: normal;
		font-weight: 700;
		font-size: 50px;
		line-height: 75px;
		color: #EF6918;
		width: 100%;
		max-width: 90px;
	}

	.saidas .content p {
		font-style: normal;
		font-weight: 700;
		font-size: 16px;
		line-height: 1.25;
		color: #263039;
		width: 100%;
		max-width: 250px;
		display: flex;
		justify-content: center;
		flex-direction: column;
	}
	#ty-page h2 {
		font-weight: 600;
		text-align: left;
		color: var(--color-blue);
	}
@media(max-height: 800px){
	#navSection{
		margin: 0 auto;
	}
}
  @media (max-width:1500px){
      .card-img{
          width: 100%;
      }
  }
  @media (max-width: 1240px) { 
	 #vants h1, #faq h1{
		font-size: var(--titleFontSize); 
	} 
	.card-img{
	    width: 100%;
	}
	.col-4.d-flex.justify-content-center.align-items-center{
		justify-content: start !important;
		max-width: 66%;
	}
	#footerCTA form{
	    flex-wrap: nowrap;
	    
	}
	#footerCTA .col-lg-12{
	    flex: 2;
	}
	#footerCTA .container .row{
	    justify-content: space-evenly;
	}
	.subscribe{
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		align-items: center;
	}
	#footerCTA h1, #footerCTA p, .subscribe div{
		text-align: center;
	}
	#ty-page h2.text-center{
		margin-bottom: 30px;
	}
	.saidas h1,
	#ty-page h2 {
		text-align: center;
	}

	#ty-page h2 {
		margin-bottom: 25px;
	}
  }
  @media (max-width: 992px) {
	:root{
		--titleFontSize: 30px;
	} 
	.saidas .content h3{
		margin: 0;
		line-height: 1.2;
	}
    section.banner{
        padding-top: 45px;
    }
	.galleryDiv{
		display: none;
	}
	#footerCTA form{
	    flex-wrap: wrap;
	    flex-direction: column;
	}
	.subscribe label{
	    margin-right: 10px;
	    margin-bottom: 0;
	}
	.bannerMob img{
		max-width: 200px;
		margin-bottom: 50px !important;
	}
	.galleryMob{
		margin-top: -1px;
		padding-top: 25px;
		margin-left: 0;
		margin-right: 0;
		background-color: #2C2C2C;
		display: block !important;
	}
	.galleryMob .slick-list{
		min-height: 250px;
	}
	.galleryMob .slick-list img{ 
		height: 200px;
		object-fit: cover;
		border-radius: 30px;
		margin-left: 75px;
		max-width: 200px;
	}
	.bannerMob{
		display: flex;
		justify-content: center;
		flex-direction: column;
		align-items: center;
	}
	.bannerText{
	    text-align: center;
		max-width: 90%;
		font-size: var(--titleFontSize);
	}
	.subscribe{
		flex-direction: row;
		justify-content: center;
	}
  }
  @media (max-width: 768px){
	#footerCTA .row{
		display: flex;
		align-items: center;
		flex-direction: column;
		padding: 0;
		margin: auto;
	} 
	#footerCTA .container .row {
		gap: 10px;
	}

	.coolinput input[type=text].input {
		margin-right: 0;
	}
	.coolinput {
		width: 100%;
	}
	.col-4.d-flex.justify-content-center.align-items-center{
		justify-content: center !important; 
	}
	.subscribeCheck, #footerCTA p, #footerCTA h1, #courseModal p{
		text-align: center;
	}
	.subscribe .col-12.col-lg-8{
		display: flex;
		flex-wrap: wrap;
		align-items: baseline;
		justify-content: center;
	}
	.subscribe .col-12.col-lg-8 label:not(.subscribeCheck label), .subscribe #subEmail{
		width: 100%;
		max-width: 175px;
	}
    #faqAccordion .accordion-header button{
        font-size: 18px;
    } 
    .subscribe input::placeholder, #faqAccordion .accordion-body{ 
    	font-size: 14px;  
    } 
	#courseModal .mt-auto p{
		width: 90%;
		margin-left: auto;
		margin-right: auto;
	}
	#courseModal .modal-dialog {
		width: 90%;
		margin: 20px auto;
	}
	.closeModal{
		position: absolute;
		left: 95%;
	}
	#courseModal .card-img{
		border-radius: 20px 20px 0 0;
	}
	#courseModal h1{
		font-size: 24px;
        max-width: 75%;
        text-align: center;
        margin: 20px auto 10px;
	}
	#courseModal ul{
		width: max-content;
		margin: 0 auto 20px;
	}
	.terms-text{
		text-align: center;
	}
	#navSection{
		margin: 10px auto;
	}
	#faqAccordion .card-header{
		background-size:	20px;
	}
	#courseModal p{
		margin: 0 auto 10px;
	}

  }
  @media (max-width: 640px){
	#navSection .icon-button{
		font-size: 14px;
	}
	.icon-button img{
		max-height: 20px;
	}
	.closeModal{
		left: 100%;
	}
	section.banner{
		width: 100%;
	}
	.sectionTitle h1{
	    padding: 0 10px;
	}
	.bannerText, #vants h1, #faq h1{
	    text-align: center;
	}
	:root{
	    --titleFontSize: 26px;
	}	

  }
  @media (max-width: 450px){
	form .form-control{
		margin-bottom: 5px;
	} 
	.saidas{
	    max-width: 95%;
	    margin: 70px auto;
	}
	.bannerText{ 
		font-size: 24px;
	}
	.form-control{
		padding: 3px 15px;
	}
	.course-card button{
		width: 90%; 
	}
	.course-card .no-gutters{
		min-height: 430px;
	}
	h5.card-title{
		font-size: 18px; 
	}
	.card-body p, #navSection .icon-button{
		font-size: 11px;
	} 
	.saidas h1{
	    font-size: 24px;
	}
	.saidas .content h3{
	    font-size: 30px;
	}
	.saidas .content{
	    max-width: 300px;
	    margin-left: auto;
	    margin-right: auto;
	}
	#ty-page h2{
	    font-size: 20px;
	}
  }
  @media (max-width: 370px){
	.cardDiv {
		width: 100%;
	}
	#navSection .icon-button{
	    height: 35px;
	}
	.icon-button img{
	    
	}
  }
  @media (max-width: 340px){
	.course-card button{
		font-size: 14px;
	}
	.cardDiv{
		width: 100%;
	}
	:root{
		--titleFontSize: 22px;
	}
  }