/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@import url('https://fonts.googleapis.com/css2?family=Elms+Sans:ital,wght@0,100..900;1,100..900&family=Gabarito:wght@400..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    /* Font Family */
    --open-sans: 'Open Sans', sans-serif;
    --elms-sans: 'Elms Sans', sans-serif;
    --gabarito: 'Gabarito', sans-serif;

    /* Color Palette */
    --white: #fff;
    --light: #f8f8f8;
    --black: #000;
    --primary: #650538;
    --primary-light: #910c52;
    --dark: #222;
    --dark-light: #333;
    --yellow: #f6d774;

    /* Gradient */
    --bg-gradient: linear-gradient(
        to bottom,
        var(--primary-light) 0%,
        var(--primary) 100%
    );
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html,
body {
    height: 100%;
    scroll-behavior: smooth;
}
body {
    color: var(--dark);
    font-size: 16px;
    font-family: var(--open-sans);
    font-weight: 400;
    line-height: normal;
    background-color: var(--white);
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
}
section,
.section {
    position: relative;
}
.container {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}
a,
button {
    outline: none;
    box-shadow: none;
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
button {
    padding: 0;
    border: none;
    background: unset;
}
ol,
ul {
    margin: 0;
    padding: 0;
}
ol li,
ul li {
    list-style: none;
}
img {
    height: auto;
    max-width: 100%;
    object-fit: cover;
}
input,
input:focus,
input:focus-visible,
input:active,
select,
.form-select,
.form-select:focus,
textarea {
    outline: none;
    box-shadow: none;
}
* + address,
* + dl,
* + fieldset,
* + figure,
* + ol,
* + p,
* + pre,
* + ul {
    margin: 0;
    padding: 0;
}

*::-moz-selection {
    background: var(--black);
    color: var(--white);
    text-shadow: none;
}
::-moz-selection {
    background: var(--black);
    color: var(--white);
    text-shadow: none;
}

::selection {
    background: var(--black);
    color: var(--white);
    text-shadow: none;
}

/* =============================== */
/* :: 4.0 Common CSS */
/* =============================== */

/* ===== Typography CSS Start ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark-light);
    font-family: var(--elms-sans);
}

.fs-1 {
    font-size: 32px !important;
    line-height: 1.3;
}
.fs-2 {
    font-size: 28px !important;
}

.lh-md {
    line-height: 1.75;
}

.ff-elms-sans {
    font-family: var(--elms-sans);
}
.ff-gabarito {
    font-family: var(--gabarito);
}
/* ===== Typography CSS End ===== */

/* ===== Color CSS Start ===== */
.text-primary {
    color: var(--primary) !important;
}
.text-dark {
    color: var(--dark) !important;
}
.text-dark-light {
    color: var(--dark-light) !important;
}

.bg-light {
    background-color: var(--light) !important;
}
.bg-gradient {
    background: var(--bg-gradient);
}
/* ===== Color CSS End ===== */

/* ===== Button CSS Start ===== */
.btn {
    color: var(--white);
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
    text-transform: uppercase;
    padding: 12px 18px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-family: var(--elms-sans);
    border: none;
    border-radius: 10px;
    background: linear-gradient(
        to bottom,
        var(--primary-light) 0%,
        var(--primary) 50%,
        var(--primary-light) 100%
    );
    background-size: auto 200%;
    transition: all 0.3s ease-in-out;
}
.btn:hover {
    color: var(--white);
    background-position: bottom center;
}
/* ===== Button CSS End ===== */

/* ===== CSS for Random Componetns/Classes Start ===== */
.text-link {
    color: var(--dark);
    text-decoration: underline;
}
.text-link:hover {
    color: var(--primary-light);
}

.section-overlay {
    position: relative;
    z-index: 1;
}
.section-overlay::after {
    content: '';
    width: 100%;
    height: 100%;
    background: var(--bg-gradient);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.85;
    z-index: -1;
}

.transition-common {
    transition: all 0.3s ease-in-out;
}
/* ===== CSS for Random Componetns/Classes End ===== */

/* =============================== */
/* :: 5.0 Header Area CSS Start */
/* =============================== */
.header--area {
    padding: 20px 0;
    position: relative;
    z-index: 1;
}
.header__wrapper {
    gap: 36px;
}
.logo--header,
.logo--mobileMenu {
    max-width: 96px;
}
.mobile-menu-open,
.mobile-menu-close {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    font-size: 16px;
    color: var(--white);
    background: linear-gradient(
        to bottom,
        var(--primary-light) 0%,
        var(--primary) 50%,
        var(--primary-light) 100%
    );
    background-size: auto 200%;
}
.mobile-menu-open:hover,
.mobile-menu-close:hover {
    background-position: bottom center;
}
.mobile-menu .offcanvas {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
}
.mobile-menu .offcanvas-header,
.mobile-menu .offcanvas-body {
    padding: 20px;
}
.nav__link--mobileMenu {
    padding: 14px 0;
    color: var(--dark);
    font-size: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.nav__link--mobileMenu:hover,
.nav__link--mobileMenu.active {
    color: var(--primary-light);
}

/* Header Navigation for Large Device Start */
.nav--header {
    gap: 48px;
    margin-top: 8px;
}
.nav__wrapper--header {
    gap: 24px;
}
.nav__link--header {
    color: var(--dark-light);
    padding: 3px 0;
}
.nav__link--header::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary);
    transition: all 0.3s ease-in-out;
}
.nav__link--header:hover,
.nav__link--header.active {
    color: var(--primary);
}
.nav__link--header.active {
    font-weight: 600;
}
.nav__link--header:hover::after,
.nav__link--header.active::after {
    left: 0;
    width: 100%;
}
/* Header Navigation for Large Device End */

/* Sticky Header Start */
.sticky-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    transition: top 0.75s ease-in-out;
}
.sticky-header.sticky-active {
    position: fixed;
    top: -100%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 2px 32px 0 rgba(0, 0, 0, 0.1);
}
.sticky-header.sticky-active.show {
    top: 0;
    opacity: 1;
    visibility: visible;
}
.sticky-header + * {
    margin-top: 76px;
}
/* Sticky Header End */

/* =============================== */
/* :: 5.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 6.0 Hero Section CSS Start */
/* =============================== */
.hero--section {
    padding: 64px 0;
}
.main__title__sm {
    font-size: 22px;
}
/* =============================== */
/* :: 6.0 Hero Section CSS End */
/* =============================== */

/* =============================== */
/* :: 7.0 Help Section CSS Start */
/* =============================== */
.help--section {
    padding: 48px 0;
}
.section__logo__icon {
    max-width: 32px;
    margin-bottom: 16px;
}
.card {
    padding: 0;
    border: none;
    height: 100%;
}
.card--help {
    border-radius: 10px;
    box-shadow: 0 2px 22px 0 rgba(0, 0, 0, 0.1);
}
.card__thumb {
    height: 208px;
}
.card__content {
    padding: 24px 16px;
}
.card__title {
    font-size: 24px;
}
.help__section__text {
    line-height: 2;
    max-width: 904px;
    margin: 48px auto 0;
}
/* =============================== */
/* :: 7.0 Help Section CSS End */
/* =============================== */

/* =============================== */
/* :: 8.0 Project Section CSS Start */
/* =============================== */
.project--section {
    padding: 48px 0;
}
.project--section .swiper-slide {
    width: 300px;
    height: 208px;
}
.project__item {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 20px 16px;
}
.project__item::after {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.44) 0%, #000 100%);
    z-index: -1;
    opacity: 0.2;
    transition: all 0.4s ease-in-out;
}
.project__item:hover::after {
    opacity: 0.4;
}
.project__bg__thumb {
    transition: all 0.4s ease-in-out;
}
.project__item:hover .project__bg__thumb {
    transform: scale(1.05) rotate(-1deg);
}
.project__title {
    font-size: 18px;
}
/* =============================== */
/* :: 8.0 Project Section CSS End */
/* =============================== */

/* =============================== */
/* :: 9.0 Trust Section CSS Start */
/* =============================== */
.trust--section {
    padding: 48px 0 0;
}
.trust__wrapper {
    gap: 16px;
}
.trust__item {
    max-width: 280px;
    width: 100%;
}
.trust__item__inner {
    gap: 20px;
    width: 100%;
    padding: 24px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 22px 0 rgba(0, 0, 0, 0.1);
}
.trust__circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 12px;
}
.trust__circle svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    pointer-events: none;
}
.trust__circle circle {
    fill: none;
    stroke: var(--primary);
    stroke-width: 1;
    stroke-dasharray: 314;
    stroke-dashoffset: 314;
    transition: all 0.4s ease-in-out;
}
.trust__item:hover .trust__circle circle {
    stroke-dashoffset: 0;
}
.trust__circle__icon {
    width: 43.16%;
}
.trust__title {
    font-size: 18px;
}
/* =============================== */
/* :: 9.0 Trust Section CSS End */
/* =============================== */

/* =============================== */
/* :: 10.0 About Section CSS Start */
/* =============================== */
.about--section {
    padding: 48px 0;
}
.about__wrapper {
    padding: 16px;
    box-shadow: 0 2px 32px 0 rgba(0, 0, 0, 0.1);
}
.about__thumb {
    width: 100%;
    height: 240px;
    margin-bottom: 24px;
}
/* =============================== */
/* :: 10.0 About Section CSS End */
/* =============================== */

/* ===================================== */
/* :: 11.0 Testimonial Section CSS Start */
/* ===================================== */
.testimonial--section {
    padding: 48px 0;
}
.testimonial__slider__active {
    padding: 24px;
    margin: -24px;
    padding-right: 327px;
    margin-right: -327px;
    overflow: hidden;
}
.card--testimonial {
    padding: 16px;
    border-radius: 12px;
    transition: all 0.3s ease-in-out;
}
.card--testimonial:hover {
    box-shadow: 0 2px 32px 0 rgba(0, 0, 0, 0.1);
}
.testimonial__text,
.testimonial__meta {
    padding: 5px;
}
.testimonial__text {
    line-height: 1.5;
}
.star__icon {
    width: 20px;
    color: var(--yellow);
}
.star__icon svg {
    width: 100%;
}
.ratings {
    color: #3b485c;
    font-size: 18px;
}
.testimonial--section .swiper-slide {
    width: 300px;
    height: auto;
}
/* =================================== */
/* :: 11.0 Testimonial Section CSS End */
/* =================================== */

/* =============================== */
/* :: 12.0 Contact Section CSS Start */
/* =============================== */
.contact--section {
    padding: 48px 0;
}
.contact--section .section__head {
    max-width: 868px;
}
.contact__wrapper {
    padding: 20px 16px;
    box-shadow: 0 2px 32px 0 rgba(0, 0, 0, 0.1);
}
.contact__details {
    padding: 16px;
    background: url('../imgs/bgs-thumbs/contact-thumb.jpg') no-repeat center /
            cover,
        var(--primary);
    border-radius: 10px;
}
.contact__info {
    color: #eee;
}
.contact__item {
    gap: 10px;
}
.contact__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}
.contact__link {
    color: var(--white);
}
.contact__link:hover {
    color: var(--yellow);
}
.form__input {
    width: 100%;
    height: 48px;
    padding: 10px 16px;
    border: 1px solid #848484;
    border-radius: 10px;
    font-size: 14px;
    color: var(--black);
    transition: all 0.3s ease-in-out;
}
.form__input--textarea {
    height: 100px;
    resize: none;
}
.form__input:focus,
.form__input:not(:placeholder-shown) {
    border-color: var(--primary-light);
}
.form__input::placeholder {
    font-size: 14px;
    color: var(--dark);
    opacity: 1;
}
/* =============================== */
/* :: 12.0 Contact Section CSS End */
/* =============================== */

/* =============================== */
/* :: 13.0 Footer Area CSS Start */
/* =============================== */
.footer--area {
    background-color: #f5f5f5;
}
.footer__wrapper {
    gap: 32px;
    padding: 48px 0;
}
.logo--footer {
    max-width: 160px;
}
.widget__title {
    font-size: 18px;
}
.nav__link--footer,
.footer__contact__label,
.footer__contact__link,
.footer__social__text {
    color: var(--dark);
    font-size: 15px;
    line-height: 2;
    transition: all 0.3s ease-in-out;
}
.nav__link--footer:hover,
.footer__contact__link:hover {
    color: var(--primary-light);
}
.nav__link--footer::after,
.footer__contact__link::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-light);
    transition: all 0.3s ease-in-out;
}
.nav__link--footer:hover::after,
.footer__contact__link:hover::after {
    left: 0;
    width: 100%;
}
.footer__contact {
    display: inline-grid;
    grid-template-columns: auto 1fr;
    align-items: center;
}
.footer__contact__item {
    display: contents;
}
.footer__contact__label {
    padding-right: 12px;
}
.footer__social__icon {
    margin-right: 12px;
}
.footer__social__icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--black);
    transition: all 0.3s ease-in-out;
}
.footer__social__item:hover .footer__social__icon {
    background-color: var(--primary-light);
}
.footer__social__icon img {
    max-height: 63%;
}
.footer__bottom {
    border-top: 1px solid #7a7a7a;
}
.footer__legal__link {
    font-size: 14px;
}
.copyright-text {
    font-size: 13px;
}
/* =============================== */
/* :: 13.0 Footer Area CSS End */
/* =============================== */


/* CUSTOM */
ul.nav__wrapper--header--top li:last-child { display: none; }
.section__para { line-height: 1.8rem; }
.section__para a { text-decoration: underline; color: var(--primary); }
.section__para a:hover { color: #000; }