:root {
    --dark-color: #fff;
    --green-color:#18ada1;
    --white-color: #00336a;
    --light-grey-color: #f5f5f5;
    --grey-color: #6b6a6a;
    --gold-color: #ffb944;
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Titillium Web', sans-serif;
    font-size: 1.3rem;
    background:none transparent;
}

::placeholder {    
    color: #f5f5f5;    
}

.bgDark { background-color: #18ada1; }
.bgLight { background-color: #18ada1; }
.bgLightGrey { background-color: var(--light-grey-color); }

.colorDark { color: var(--dark-color) !important; }

h1 { font-size: 60px; font-weight: 700; line-height: 80px; }
h2 { font-size: 35px; margin-bottom: 10px; }
h3 { font-size: 22px; }
h5 { margin-bottom: 0px; }

.title {
    color: var(--white-color);
}

.subtitle {
    color: var(--green-color);
}

.textWhite {
    color: var(--dark-color);
}

.underline {
    text-decoration: underline;
    color:#18ada1;
}

p {
    font-size: 18px;
    color: #6b6a6a;
    opacity: .9;
    line-height: 1.5;
    margin-bottom: 10px;
}

a:hover { text-decoration: none;}

.btn {
    font-size: 17px;
    /* padding: 15px 26px; */
    min-width: 100px;
    border-radius: 5px;
    display: inline-block;
}

.btn-primary {
    color: #fff !important;
    background-color: #18ada1;
    border: 2px solid #18ada1;
}

.btn-secondary {
    background-color: var(--grey-color);
    color: #fff !important;
    border: 2px solid var(--grey-color);
}

.btn-alternate {
    background-color: transparent;
    color: var(--white-color);
    border: 2px solid var(--white-color);
}

.btn-primary:hover {
    background: #18ada1;
    border: 2px solid var(--dark-color);
}

.btn-check:focus + .btn-primary, .btn-primary:focus, .btn-primary:active {
    color: #fff;
    background-color: #18ada1;
    border: 2px solid var(--dark-color);
    box-shadow: 0 0 0 0.25rem rgba(24, 173, 161, 0.5);
}
.btn-secondary:hover {
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
}
.btn-secondary:focus {
    background-color: var(--white-color) !important;
    outline: none;
    border: 2px solid var(--white-color) !important;
    box-shadow: none;
}

.logo-brand {
    max-width: 180px;
    min-width: 100px;
}

section {
    padding: 30px 0;
}

.divider { border-bottom: 2px solid var(--light-grey-color); }

.content-center {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.full-width {
    width: 100%;
}

.form-control {
    font-size: 14px;
    border: 1px solid #cacaca;
    padding: 15px;
    border-radius: 2px;
}

.form-control01 {
   /*    display: block;*/
    max-width: 100px;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: white;
    background-color: transparent;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.form-control:focus {
    border: 1px solid #18ada1;
    outline: none;
    box-shadow: none;
}

.form-control01:focus {
    border: 1px solid #18ada1;
    outline: none;
    box-shadow: none;
}

.login a{
    color: #fff !important;
}

.login a:hover{
    transition: 0.2s;
    color: #18ada1;
}

.navbar {
    background-color: var(--white-color);
    box-shadow: 0 2px 4px 0 rgba(0,0,0,.05);
    min-height: 100px;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
}

.fixed-top{
    opacity: 0.9;
    z-index: 10000;
}

/* .nav-link { color: var(--dark-color); } */
/* .nav-link:hover { color: var(--dark-color); } */

.navbar-toggler { font-size: 40px; }
.navbar-toggler:focus { outline: none; }

/* //////////////
   Hero
//////////////*/

#hero {
    background-image: url(../../assets/images/working-hands.jpg);
    background-position: center top;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 180px;
    min-height: 700px;
    color: white;
}

#hero p {
    color: white;
}

/* //////////////
   Portfolio
//////////////*/

.portfolio-container {
    position: relative;
    overflow: hidden;
    margin: 10px 0;
    border-radius: 2px;
}

.portfolio-container img {
    -moz-transition: all 0.8s;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
}

.portfolio-container:hover img {
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.portfolio-details {
    position: absolute;
    bottom: 25px;
    left: 25px;
    z-index: 9000;
}

.portfolio-details h2 {
    margin-bottom: 0px;
}

.portfolio-details a h2, .portfolio-details a p {
    color: white;
}

/* //////////////
   Members
//////////////*/

.member-container {
    position: relative;
    margin: 10px 0;
}

.member-details {
    position: absolute;
    color: white;
    bottom: 0;
    left: 20px;
}

.member-details span {
    font-size: 14px;
}

.member-details i {
    padding: 0 5px;
}

/* //////////////
   Pricing
//////////////*/

.pricing-container {
    margin: 15px 0;
}

.plans {
    padding: 50px 80px;
    border-radius: 2px;
    min-width: 450px;
}

.plan-light {
    background-color: var(--white-color);
    border: 2px solid var(--dark-color);
}

.plan-dark {
    background-color: var(--dark-color);
    border: 2px solid var(--dark-color);
    color: var(--white-color);
}

.plans h2 {
    font-size: 70px;
    font-weight: 600;
}

.plans h2 span {
    font-size: 20px;
}

.plans ul {
    list-style-type: square;
}

/* //////////////
   Testimonial
//////////////*/
/* 
.carousel {
    min-height: 250px;
    border-radius: 2px;
    text-align: center;
}

.carousel-item p {
    font-size: 26px;
    font-weight: 400;
    color: grey;
}

.carousel-indicators li {
    background-color: #18ada1 !important;
    width: 15px;
    height: 15px;
    border-radius: 2px;
    margin: 0 8px;
}

.carousel-control-next, .carousel-control-prev { 
    color: #18ada1 !important;
    opacity: 1;
    width: 5%;
}

.control-button {
    background-color: #18ada1 !important;
    opacity: 1;
    width: 50px;
    height: 50px;
    padding: 10px;
    border: 1px solid #18ada1 !important;
    border-radius: 50px;
    font-size: 20px;
}

.carousel-container {
    max-width: 800px;
    margin: 0 auto;
} */

.testimonial-user {
    max-width: 240px;
    margin: 0 auto;
    text-align: left;
}

.testimonial-user h6 {
    margin-bottom: 0px;
}

.testimonial-user span {
    font-size: 12px;
}

.testimonial-user img {
    border-radius: 50%;
    max-width: 50px;
    text-align: center;
}

.rating i {
    color: var(--gold-color);
    font-size: 26px;
}

/* //////////////
   Media queries
//////////////*/

/*@media (max-width: 575.98px) { 
    h1 { font-size: 40px; line-height: normal; }
    .portfolio-details h2 { font-size: 32px; }
    .plans { min-width: unset; padding: 40px; }
    .carousel-item p { font-size: 20px; }

    .footer-menu { 
        display: block !important;
        padding: 20px 0 !important;
        font-size: 20px;
    
    }
}*/

@media (min-width: 576px) and (max-width: 767.98px) { }

@media (min-width: 768px) and (max-width: 991.98px) { 
    .portfolio-details h2 { font-size: 30px; }
    .plans { min-width: unset; padding: 40px 20px;}
}

@media (min-width: 992px) and (max-width: 1199.98px) { }

@media (min-width: 1200px) { }

 .p-4 {
    padding: 1.5rem!important;
}
.w-100 {
    width: 100%!important;
}

/* .nav-link:hover{
    border-bottom: 1px solid #18ada1;
}

.bottom{
    border-bottom: 1px solid #18ada1;
} */

.fundo{
    background-color: #FFF;
    overflow-y: auto;
  }