/**
* Template Name: Amoeba
* Updated: Jan 29 2024 with Bootstrap v5.3.2
* Template URL: https://bootstrapmade.com/free-one-page-bootstrap-template-amoeba/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
    font-family: "Truculenta", sans-serif;
    color: #000;
}

a {
    text-decoration: none;
    color: #39B5E0;
}

a:hover {
    color: #39B5E0;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-primary {
    font-family: "Marhey";
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
    padding: 60px 0;
}

.section-bg {
    background-color: #fffeee;
    /*-- #f2f9f8 --*/
}

.section-title {
    text-align: center;
    padding-bottom: 20px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 0px;
    padding-bottom: 0;
    color: #000000;
    text-shadow: 1px 1px 2px #ffffff;

}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
    padding: 20px 0;
    background-color: #ffffff;
    min-height: 40px;
    margin-top: 80px;
}

.breadcrumbs h2 {
    font-size: 24px;
    font-weight: 300;
    margin: 0;
}

@media (max-width: 992px) {
    .breadcrumbs h2 {
        margin: 0 0 10px 0;
    }
}

.breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

.breadcrumbs ol li+li {
    padding-left: 10px;
}

.breadcrumbs ol li+li::before {
    display: inline-block;
    padding-right: 10px;
    color: #FFC20E;
    content: "/";
}

@media (max-width: 768px) {
    .breadcrumbs .d-flex {
        display: block !important;
    }

    .breadcrumbs ol {
        display: block;
    }

    .breadcrumbs ol li {
        display: inline-block;
    }
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background: #ff78f0;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 24px;
    color: #ffffff;
    line-height: 0;
}

.back-to-top:hover {
    background: #ff33e7;
    color: #ffffff;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
    height: 40px;
    z-index: 997;
    transition: all 0.5s;
    background: #ff33e7;
}

#header.header-scrolled {
    background: #ff78f0;
    height: 40px;
}

#header .logo h1 {
    font-size: 20px;
    margin: 0;
    padding: 0;
    line-height: 0;
    font-weight: 700;
    letter-spacing: 0px;
}

#header .logo h1 a,
#header .logo h1 a:hover {
    color: #ffffff;
    text-decoration: none;
    line-height: 0;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
}

#main {
    margin-top: 80px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: "Lato";
    font-size: 14px;
    color: #ffffff;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #ffffff;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #ffffff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    text-transform: none;
    font-size: 14px;
    font-weight: 500;
    color: #A31ACB;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #A31ACB;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}

/**
* Mobile Navigation
*/
.mobile-nav-toggle {
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(57, 181, 224, 0.9);
    transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #ffffff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #000000;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #A31ACB;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #ffffff;
    box-shadow: 0px 0px 30px rgb(57, 181, 224);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #A31ACB;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    width: 100%;
    height: 50vh;
    background: url("../images/numbers-hero-bg-01_comp.jpg") bottom center;
    background-size: cover;
    position: relative;
    margin-bottom: -80px;
}

#hero:before {
    content: "";
    background: rgba(0, 0, 0, .35);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

#hero .hero-container {
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    padding-top: 20px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

#hero h1 {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 600;
    line-height: 56px;
    color: #ffffff;
    text-shadow: 2px 2px 2.5px #000000;
}

#hero h2 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 300;
    text-shadow: 1px 1px 1px #000000;
}

#hero .btn-get-started {
    font-family: "Marhey";
    font-weight: 700;
    font-size: 20px;
    letter-spacing: .5px;
    display: inline-block;
    padding: 6px 20px 0px 24px;
    border-radius: 50px;
    transition: 0.5s;
    border: 4px dotted #ffffff;
    color: #A31ACB;
    background: #F5EA5A;
}

#hero .btn-get-started:hover {
    background: #A31ACB;
    color: #F5EA5A;
    border: 4px dotted #ffffff;
}

@media (min-width: 4096px) {
    #hero {
        background-attachment: fixed;
    }
}

@media (max-width: 768px) {
    #hero h1 {
        font-size: 28px;
        line-height: 36px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 30px;
    }
}

/*--------------------------------------------------------------
# Instructions
--------------------------------------------------------------*/
.instructions .icon-box {
    margin-bottom: 40px;
    text-align: center;
}

.instructions .icon {
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
}

.instructions .icon i {
    color: #39B5E0;
    font-size: 52px;
}

.instructions .iconred i {
    color: #e05239;
    font-size: 52px;
}

.instructions .title {
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    font-size: 18px;
    text-transform: uppercase;
}

.instructions .title a {
    color: #000000;
    transition: 0.3s;
}

.instructions .icon-box:hover .title a {
    color: #A31ACB;
}

.instructions .description {
    font-family: "Lato";
    line-height: 24px;
    font-size: 14px;
    letter-spacing: 0px;
}

/*--------------------------------------------------------------
# Who Is This For
--------------------------------------------------------------*/
.who {
    /*  background: linear-gradient(rgba(255, 255, 255, 1), rgb(255, 255, 255, .9)), url("../img/istockphoto-1201150945-1024x1024.jpg") fixed center center;
  background-size: cover; */
    padding: 60px;
}

.who h3 {
    font-weight: 400;
    font-size: 26px;
}

.who ul {
    list-style: none;
    padding: 0;
}

.who ul li {
    padding-bottom: 10px;
}

.who ul i {
    font-size: 22px;
    padding-right: 4px;
    color: #39B5E0;
    line-height: 0;
}

.who p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Reviews
--------------------------------------------------------------*/
.reviews {
    background: linear-gradient(rgba(255, 255, 255, 1), rgb(255, 255, 255, .4)), url("../images/numbers-section-bg-lg.jpg") fixed center center;
    background-size: cover;
    padding: 60px;
}

.reviews h3 {
    font-weight: 400;
    font-size: 26px;
}

.reviews ul {
    list-style: none;
    padding: 0;
}

.reviews ul li {
    padding-bottom: 10px;
}

.reviews ul i {
    font-size: 22px;
    padding-right: 4px;
    color: #39B5E0;
    line-height: 0;
}

.reviews p:last-child {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Frequently Asked Questions
--------------------------------------------------------------*/
.faq {
    /*  background: linear-gradient(rgba(255, 255, 255, .9), rgb(255, 255, 255, .9)), url("../img/istockphoto-1226817072-1024x1024.jpg") center center;
  background-size: cover;*/
    padding: 60px 0;
}

.faq .faq-list {
    padding: 0;
    list-style: none;
}

.faq .faq-list li {
    border-bottom: 0px solid #39B5E0;
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.faq .faq-list .question {
    display: block;
    position: relative;
    font-family: "Truculenta", sans-serif;
    font-size: 20px;
    line-height: 24px;
    font-weight: 600;
    padding-left: 25px;
    cursor: pointer;
    color: #A31ACB;
    transition: 0.3s;
}

.faq .faq-list i {
    font-size: 16px;
    position: absolute;
    left: 0;
    top: -2px;
}

.faq .faq-list p {
    font-family: "Lato";
    margin-bottom: 0;
    padding: 10px 0 0 25px;
}

.faq .faq-list .icon-show {
    display: none;
}

.faq .faq-list .collapsed {
    color: #343a40;
}

.faq .faq-list .collapsed:hover {
    color: #39B5E0;
}

.faq .faq-list .collapsed .icon-show {
    display: inline-block;
    transition: 0.6s;
}

.faq .faq-list .collapsed .icon-close {
    display: none;
    transition: 0.6s;
}

/*--------------------------------------------------------------
# About Me
--------------------------------------------------------------*/
.aboutme {
    background: linear-gradient(rgba(255, 255, 255, 1), rgb(255, 255, 255, .3)), url("../images/numbers-section-bg-sm.jpg") fixed center center;
    background-size: cover;

}

.aboutme .member {
    text-align: center;
    box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.2);
    padding: 20px 30px 20px 30px;
    background: #ffffff;
}

.aboutme .member img {
    max-width: 60%;
    border-radius: 50%;
    margin: 0 0 30px 0;
}

.aboutme .member h4 {
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 18px;
}

.aboutme .member span {
    font-style: italic;
    display: block;
    font-size: 13px;
}

.aboutme .member p {
    font-family: "Lato";
    padding-top: 10px;
    font-size: 14px;
    color: #3c3c3c;
}

.aboutme .member .social {
    margin-top: 15px;
}

.aboutme .member .social a {
    color: #39B5E0;
    transition: 0.3s;
}

.aboutme .member .social a:hover {
    color: #ff33e7;
}

.aboutme .member .social i {
    font-size: 18px;
    margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
    padding: 30px
}

.contact .info-icon {
    font-size: 22px;
    padding-right: 4px;
    color: #39B5E0;
    line-height: 0;
}

.contact .social-links a:hover {
    color: #ff33e7;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
    background: #39B5E0;
    padding: 30px 0;
    color: #ffffff;
    font-size: 14px;
}

#footer .copyright {
    font-family: "Lato", sans-serif;
    text-align: center;
}

#footer .credits {
    padding-top: 10px;
    text-align: center;
    font-size: 13px;
    color: #ffffff;
}

#footer .credits a {
    color: #ffffff;
}

#footer .credits a:hover {
    color: #ff33e7;
}

.form-control:focus+label {
    font-weight: 400;
}

.form-floating label {
    font-weight: 500;
}
