/* @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;600;700&family=Rubik:wght@300;400;500;600;700&display=swap'); */
/* @import url('https://fonts.googleapis.com/css2?family=Didact+Gothic&family=Open+Sans:wght@300;400;500;600;700&family=Roboto:wght@300;400;700&family=Rubik:wght@300;400;500;700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

/********************
CONSTANTS
********************/

@media only screen and (min-width: 1200px) {
    html {
        scroll-padding-top: 80px;
    }
}

/********************
BODY
********************/

body {
    color: #3b3b3b;
    margin: 0;
    font-weight: 400;
    font-size: 20px;
}

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

/********************
SECTION
********************/

section {
    padding: 100px 0 100px 0;
}

section.dark {
    background-color: #fcfcfc;
}

/********************
SECTION INTRO
********************/

section .intro {
    color: #a8a8a8;
    max-width: 800px;
    margin-bottom: 60px;
}

/********************
HEADINGS
********************/

/* #region headings */

h1 {
    font-size: 38px;
    font-weight: bold;
    letter-spacing: 0.5px;
    line-height: 140%;
}

h2 {
    color: #3b3b3b;
    font-size: 38px;
    font-weight: 500;
}

h3 {
    font-size: 38px;
    margin-bottom: 0;
}

h4  {
    font-size: 24px;
    font-weight: bold;
}

/* #endregion headings */

/********************
Cards
********************/

/* #region cards */

.card {
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 8px 0px, rgba(0, 0, 0, 0.04) 0px 2px 8px 0px;
    border: none;
    border-radius: 20px;
    padding: 20px;
}

/* Light cards */

.card.light {
    background-color: #fff;
}

.card.light h4  {
    color: #3b3b3b;
}

.card.light p {
    color: #494949;
}

/* Dark cards */

.card.dark {
    background-color: #222;
}

.card.dark h4  {
    color: #f3f3f3;
}

.card.dark p {
    color: #cbcbcb;
}

.card.dark .icon {
    color: #f3f3f3;
}

/* #endregion cards */

/********************
HEADER
********************/

/* #region header */

header {
    z-index: 99999;
}

header.desktop {
    position: sticky; 
    top: 40px;
}

header.mobile {
    position: sticky;
    top: 0px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 8px 0px, rgba(0, 0, 0, 0.04) 0px 2px 8px 0px;
    padding: 20px 0;
}

header a {
    text-decoration: none;
}

header .logo {
    height: 47px;
    cursor: pointer;
}

header .name {
    color: #3b3b3b;
    font-size: 20px;
    font-weight: bold;
}

header .name.scrolled {
    color: #3b3b3b;
    border-radius: 25px;
}

/* #endregion header */

/********************
nav-desktop
********************/

/* #region menu mobile */

.menu-items {
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    padding: 20px 16px 20px 16px;
    transition: 0.3s ease-in-out;
    background-color: #ffffff00;
}

.menu-items.scrolled {
    background-color: #fff;
    padding: 20px 16px 20px 16px;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 8px 0px, rgba(0, 0, 0, 0.04) 0px 2px 8px 0px;
}

.menu-items.scrolled a {
    color: #3b3b3b;
    border-radius: 25px;
}

.menu-item a{
    color: #3b3b3b;
    padding: 10px 16px 10px 16px;
    border-radius: 25px;
}

.menu-item a:hover {
    background-color: rgba(203, 203, 203, 0.27);
    backdrop-filter: blur(75px);
    transition: 0.3s;
}

.menu-item:not(:first-of-type) {
    margin-left: 20px;
}

/* scroll spy */

.menu-item .active {
    background-color: rgba(203, 203, 203, 0.27);
    backdrop-filter: blur(75px);
    transition: 0.3s;
}

/* header contact button */

.menu-item-contact {
    color: #3b3b3b;
    background-color: #8ebcf6;
    padding: 10px 16px 10px 16px;
    border-radius: 25px;
    margin-left: 40px;
}

.menu-item-contact:hover {
    transform: scale(.95);
}

.menu-item-contact {
    transition: transform 0.2s ease-in-out;
} 

/* #endregion menu mobile */

/********************
nav-mobile
********************/

/* #region menu mobile */

#nav-mobile {
    background-color: white;
    display: flex;
    align-items: center;
}

#nav-mobile button {
    font-size: 30px;
    color: #353535;
    background-color: #fff;
    border: none !important;
    padding-left: 15px;
    padding-right: 15px;
}

.offcanvas {
    padding: 20px 0px 20px 20px;
}

.offcanvas-header {
    text-align: right;
    padding-right: 50px;
}

.offcanvas-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
}

.offcanvas-backdrop.show {
    opacity: 0.1;
}

.offcanvas-body a:not(:last-child) {
    margin-bottom: 40px;
}

.offcanvas-body a {
    background-color: #ffffff00;
    color: #353535;
    font-size: 17px;
    font-weight: bold;
    border: none !important;
    box-shadow: none !important;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-left: 0;
}

.offcanvas-body a i {
    width: 50px;
    text-align: center;
}

.offcanvas i {
    font-size: 30px;
    margin-right: 20px;
}

.btn.btn-warning {
    background-color: #8ebcf6;
    color: #353535;
    font-size: 17px;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 8px 0px, rgba(0, 0, 0, 0.04) 0px 2px 8px 0px;
    width: 100%;
    padding: 10px 0 10px 0;
}

.btn.btn-warning:hover {
    transform: scale(.95);
}

.btn.btn-warning:focus {
    background-color: #8ebcf6;
    color: #353535;
}

.btn.btn-warning {
    transition: transform 0.2s ease-in-out;
} 

  /* #endregion menu mobile */

/********************
hero cards
********************/

/* #region stacked icons */

#section-hero .card.bubble .stacked-icons{
    font-size: 15px;
    text-align: left;
    margin-bottom: 150px;
}

#section-hero .button-flexbox {
    display: flex;
    flex-direction: row;
    justify-content: right;
}

#section-hero .btn.btn-warning {
    background-color: #8ebcf6;
    color: #353535;
    font-size: 17px;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 8px 0px, rgba(0, 0, 0, 0.04) 0px 2px 8px 0px;
    padding: 10px 0 10px 0;
    max-width: 130px;
}

#section-hero .btn.btn-warning:hover {
    transform: scale(.95);
}

#section-hero .btn.btn-warning {
    transition: transform 0.2s ease-in-out;
} 

/* #endregion stacked icons */

/********************
about section
********************/

/* #region req button */

.req-button {
    color: rgb(59, 59, 59);
    background-color: #8ebcf6;
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 1px;
    width: 100%;
    border: none;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 8px 0px, rgba(0, 0, 0, 0.04) 0px 2px 8px 0px;
    text-align: center;
    padding: 10px 0 10px 0;
    margin-top: 80px;
    cursor: pointer;
}

.req-button:hover {
    transform: scale(.95);
    transition: 0.2s;
}

.req-button {
    transition: transform 0.2s ease-in-out;
}

/* #endregion req button */

/* #region Bullet Points Card */

#section-about .card {
    padding: 50px;
}

#section-about .highlights {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.highlight .icon {
    font-size: 26px;
    width: 60px;
}

/* #endregion Bullet Points Card */

/********************
showcase icons
********************/

  /* #region Showcase Icons */

.showcase-icons {
    display: flex;
    justify-content: center;
    justify-content: space-between;
    align-items: center;
}

.showcase-icons img {
    filter: grayscale(100%);
    opacity: .5;
    max-width: 120px;
    border-radius: 0 !important;
}

  /* #endregion Showcase Icons */

/********************
Testimonials
********************/

/* #region Testimonials */

#section-testimonials .card {
    background-color: #8ebcf6;
    max-width: 100%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#section-testimonials .card-body {
    padding: 0;
    margin: 20px 0 30px 0 !important;
}

#section-testimonials .card .quote-icon{
    font-size: 50px;
}

#section-testimonials .card p {
    font-size: 18px;
}

#section-testimonials .card .testi-flexbox {
    display: flex;
    flex-direction: row;
    align-items: center;
}

#section-testimonials .card .square-bg {
    background-color: #fff;
    border-radius: 10px;
    max-width: 70px;
    padding: 8px;
}

#section-testimonials .card .logo{
    width: 30px;
}

#section-testimonials .card p {
    margin-bottom: 0;
}

p.name{
    letter-spacing: 1px;
    font-size: 17px;
    font-weight: 500;
}

#section-testimonials .card p.subtext{
    font-size: 15px;
}

/* toggle button */

#section-testimonials .btn {
    border: none;
    padding: 15px 55px 15px 55px;
    border: solid #8ebcf6 2px !important;
}

#section-testimonials .btn {
    color: #8ebcf6;
    background-color: rgba(255, 255, 255, 0);
}

#section-testimonials .btn:hover {
    color: white;
    background-color: #8ebcf6;
    border: solid #8ebcf6 2px !important;
    transition: 0.5s;
}

/* #endregion Testimonials */

/********************
stag cards
********************/

/* #region Stag Cards */

.card.stag {
    min-height: 400px;
    border-radius: 50px;
    background-size: cover;
    background-position: center;
}

a {
    text-decoration: none;
}

.stag h4 {
    font-size: 35px;
    font-weight: 500;
}

.card.stag:hover {
    cursor: pointer;
    transform: scale(.99);
}

.card.stag {
    transition: transform 0.2s ease-in-out;
} 

/* work button */

#section-work .btn {
    border: none;
    padding: 15px 55px 15px 55px;
    border: solid #8ebcf6 2px !important;
}

#section-work .btn {
    color: #8ebcf6;
    background-color: rgba(255, 255, 255, 0);
}

#section-work .btn:hover {
    color: white;
    background-color: #8ebcf6;
    border: solid #8ebcf6 2px !important;
    transition: 0.5s;
}

/* #endregion Stag Cards */

/********************
Call to action
********************/

/* #region CTA */

.card.cta {
    height: 300px;
    background-color: #8ebcf6;
    display: flex;
    flex-direction: column;
}

.card.cta .card-body h4 {
    font-size: 35px;
    font-weight: 500;
}

.cta .btn.btn-warning {
    background-color: #3b3b3b;
    color: #fff;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 8px 0px, rgba(0, 0, 0, 0.04) 0px 2px 8px 0px;
    padding: 10px 0 10px 0;
    max-width: 130px;
}

.cta .btn.btn-warning:hover {
    transform: scale(.95);
}

.cta .btn.btn-warning {
    
} 

  /* #endregion CTA */

/********************
Methodology
********************/

/* #region Bubble Cards */

.card.bubble .card-body .title {
    font-size: 24px;
    font-weight: bold;
}

.card.bubble .stacked-icons{
    font-size: 15px;
    padding-bottom: 25px;
    text-align: left;
}

/* #endregion FAQ */

/********************
FAQ section
********************/

/* #region FAQ */

.accordion-item {
    border: 0;
    background-color: #fcfcfc;
}

.accordion-item:not(:last-of-type) {
    padding-bottom: 30px;
} 

.accordion .icon {
    color: white;
    font-size: 50px;
    padding: 0 30px 0 30px;
}

.accordion-button {
    background-color: #fff;
    font-size: 20px;
    font-weight: bold;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 8px 0px, rgba(0, 0, 0, 0.04) 0px 2px 8px 0px;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    color: var(--bs-accordion-active-color) none;
    background-color: #94df564d;
}

.accordion-item:first-of-type .accordion-button {
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
}

.accordion-item:last-of-type .accordion-button.collapsed {
    border-bottom-right-radius: 20px !important;
    border-bottom-left-radius: 20px !important;
}

/* #endregion FAQ */

/********************
Contact section
********************/

#section-contact .card {
    padding: 50px;
}

#section-contact h4 {
    font-size: 27px;
    font-weight: 500;
}

/* #region Bullet Points Card */

#section-contact .highlights {
    display: flex;
    flex-direction: column;
    justify-content: center;
    justify-content: space-around;
}

#section-contact .highlight p {
    font-size: 18px;
}

#section-contact .highlight .icon {
    font-size: 26px;
    width: 60px;
}

/* #endregion Bullet Points Card */

/* #region Lets Chat Card */

.form-control {
    background-color: #ffffff00;
    border-color: #e3e3e3;
    border-width: 1px;
    border-radius: 12px;
    padding: 20px;
}

.form-control:hover {
    border-color: #303030;
}

.form-control:focus {
    background-color: white;
    border-color: #303030;
    border-width: 2px;
    box-shadow: none;
}

.form-control::placeholder {
    color: #6e6e6e;
    font-weight: bold;
}

.form-control:focus::placeholder {
    color: rgb(77, 77, 77);
}

/* contact button */

#section-contact .btn {
    border: none;
    padding: 15px 55px 15px 55px;
}

#section-contact .btn {
    color: #2b2b2b;
    background-color: #8ebcf6;
    font-weight: 500;
    box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 8px 0px, rgba(0, 0, 0, 0.04) 0px 2px 8px 0px;
}

#section-contact .btn:hover {
    color: #2b2b2b;
    transform: scale(.95);
}

#section-contact .btn {
    transition: transform 0.2s ease-in-out;
}

.alert {
    font-size: 15px;
    border-radius: 12px;
    margin-bottom: 0;
    border: none;
}

/* #endregion Lets Chat Card */

/* #region Success Modal */

#section-contact .modal-content {
    background-color: #fff;
    border: none;
    border-radius: 30px;
}

#section-contact .modal-header {
    background-color: #2fbd635e;
    color: #135918;
    font-size: 30px;
    font-weight: 500;
    border-bottom: none;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    padding: 20px 40px 20px 40px;
}

#section-contact .modal-body {
    padding: 20px 40px 20px 40px;
}

#section-contact .modal-icon {
    font-size: 150px;
}

#section-contact button.btn-close:focus {
    box-shadow: none;
}

/* #endregion Success Modal */

/********************
Footer
********************/

/* #region Footer */

footer {
    text-align: center;
}

.footer-logo {
    width: 100px;
}

footer .title {
    font-size: 30px;
    font-weight: 300;
    padding: 50px 0 20px 0;
}

footer p.refferal {
    font-size: 16px;
}

.stacked-icons{
    font-size: 10px;
    padding-bottom: 50px;
    text-align: center;
}

.footer-rights {
    color: #3b3b3b;
    font-size: 13px;
    text-align: center;
    padding-bottom: 20px;
}

.footer-rights a {
    color: #3b3b3b;
    text-decoration: none;
}

footer a:hover {
    color: #429542;
    text-decoration: underline;
}

.footer-rights a:hover {
    text-decoration: underline;
}

/* tag */

.tag {
    color: white;
    font-size: 12px;
    border: 2px solid;
    border-radius: 20px;
    padding: 7px 20px 7px 20px;
    margin-bottom: 10px;
}

.tag.green {
    background-color: #54bb54; 
    border-color: #429542;
}

/* #endregion Footer */




