/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    /* Fonts Family */
    --rubik: 'Rubik', sans-serif;
    --roboto: 'Roboto', sans-serif;

    /* Color Palette */
    --white: #fff;
    --light: #f1f1f1;
    --black: #000;
    --primary: #1568d4;
    --dark: #272727;
    --dark-light: #3d3d3d;
    --grey: #a3a3a3;
    --green: #4ec562;
    --red: #d41515;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html,
body {
    height: 100%;
    scroll-behavior: smooth;
}
body {
    color: var(--dark);
    font-size: 16px;
    font-family: var(--rubik);
    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;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--dark);
    font-weight: 700;
}
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(--dark);
    color: var(--white);
    text-shadow: none;
}
::-moz-selection {
    background: var(--dark);
    color: var(--white);
    text-shadow: none;
}

::selection {
    background: var(--dark);
    color: var(--white);
    text-shadow: none;
}
*::-moz-placeholder {
    color: var(--dark);
    font-size: 16px;
    opacity: 0.5;
}
*::placeholder {
    color: var(--dark);
    font-size: 16px;
    opacity: 0.5;
}

/* ===== Reusable & Bootstrap's Customized CSS Start ===== */
.btn {
    padding: 18px 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 13px;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--roboto);
    color: var(--white);
    text-wrap: nowrap;
    position: relative;
    z-index: 1;
    border-radius: 0;
    line-height: 1;
}
.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary);
    box-shadow: 1px 2px 5px 0 rgba(39, 39, 39, 0.15);
    z-index: -1;
    transform: skew(-9deg);
    transition: all 0.3s ease-in-out;
}
.btn .span-text {
    font-weight: 700;
}
.btn:hover {
    color: var(--white);
}
.btn:hover::after {
    background-color: var(--dark);
}

.btn--green::after {
    background-color: var(--green);
}
.btn--white {
    color: var(--primary);
}
.btn--white::after {
    background-color: var(--white);
}
.btn__trans {
    color: var(--dark);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}
.btn__trans:hover {
    color: var(--red);
}
.btn__icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 19px;
    overflow: hidden;
    flex-shrink: 0;
}
/* Animations */
.btn:hover .iconMoveAnim {
    animation: iconMove 2s linear infinite;
}
@keyframes iconMove {
    0%,
    50%,
    100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-4px);
    }
    75% {
        transform: translateY(4px);
    }
}
.btn:hover .iconTranslateAnim svg,
.btn__trans:hover .iconTranslateAnim svg {
    animation: slide-through 0.5s ease-in-out forwards;
}
@keyframes slide-through {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    40% {
        transform: translateX(100%);
        opacity: 0;
    }
    60% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}
.btn:hover .iconTranslateAnim-2 svg {
    animation: slide-through-2 0.5s ease-in-out forwards;
}
@keyframes slide-through-2 {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    40% {
        transform: translate(100%, -100%);
        opacity: 0;
    }
    60% {
        transform: translate(-100%, 100%);
        opacity: 0;
    }
    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

.fs-1 {
    font-size: 30px !important;
    line-height: 1;
}
.fs-2 {
    font-size: 28px !important;
}
.fs-3 {
    font-size: 24px !important;
}
.pretitle {
    font-size: 58%;
}

.text-primary {
    color: var(--primary) !important;
}
.text-dark {
    color: var(--dark) !important;
}
.text-red {
    color: var(--red) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}
.bg-light {
    background-color: var(--light) !important;
}

.ff-roboto {
    font-family: var(--roboto);
}

.fw-700 {
    font-weight: 700;
}
.fw-800 {
    font-weight: 800;
}
.fw-900 {
    font-weight: 900;
}

.transition-1 {
    transition: all 0.3s ease-in-out;
}

.list {
    gap: 16px;
}
.check-icon {
    width: 16px;
}
.check-icon svg {
    width: 100%;
}
/* ===== Reusable & Bootstrap's Customized CSS End ===== */

/* =============================== */
/* :: 4.0 Header Area CSS Start */
/* =============================== */
.header__top {
    padding: 12px 0;
}
.header__bottom {
    padding: 22px 0;
}
/* Mobile Menu */
.logo,
.menu__logo {
    max-width: 160px;
}
.menu .offcanvas {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
}
.menu .offcanvas-header {
    padding: 20px;
}
.menu .offcanvas-body {
    padding: 24px 20px;
}
.menu__item {
    border-bottom: 1px solid rgba(39, 39, 39, 0.2);
}
.menu__link {
    padding: 12px 0;
    color: var(--dark);
}
.menu__link:hover {
    color: var(--primary);
}
.menu__contact__title {
    font-size: 20px;
}
.menu__contact__title {
    border-bottom: 1px solid rgba(39, 39, 39, 0.2);
    padding-bottom: 16px;
    margin-bottom: 24px;
}
.header__contact__text {
    font-size: 14px;
}
.header__contact__text a {
    color: var(--dark);
}
.header__contact__text a:hover {
    color: var(--primary);
}
.header__contact .icon {
    margin-right: 10px;
    width: 20px;
}
.header__contact .icon img {
    max-height: 15px;
    width: auto;
}

.availability {
    gap: 8px;
    font-size: 14px;
}
.dot-lg {
    width: 8px;
    height: 8px;
    background-color: var(--green);
}
.header__top__right {
    gap: 8px;
}
.offcanvas-footer {
    padding: 20px;
}

.sticky-header {
    position: absolute;
    width: 100%;
    z-index: 999;
    transition: top 0.3s ease-in-out;
}
.sticky-header--active {
    position: fixed;
    top: -100%;
    left: 0;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
    transition: top 0.3s ease-in-out;
}
.sticky-header--show {
    top: 0;
}
/* =============================== */
/* :: 4.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 5.0 Hero Section CSS Start */
/* =============================== */
.hero__wrapper {
    padding: 128px 0;
    max-width: 1920px;
    background-color: var(--primary);
}
.hero__wrapper::before,
.hero__wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background-color: #166fe2;
    transform: skew(-10deg);
}
.hero__wrapper::after {
    width: 25%;
    transform: unset;
}
.main__title__mini {
    font-size: 56.25%;
}
.list__item {
    gap: 12px;
}
.hero__btns {
    gap: 16px;
}
.hero__thumb {
    max-height: 160px;
    width: auto;
    height: 100%;
    margin-bottom: -6px;
    opacity: 0.5;
}
.hero__whatsapp__btn {
    padding: 14px 14px 16px;
    border-radius: 0 10px 10px 0;
    background-color: var(--green);
    color: var(--white);
    font-size: 24px;
    width: 48px;
    height: 48px;
    z-index: 5;
    margin-bottom: 22px;
}
.hero__whatsapp__btn:hover {
    background-color: var(--dark);
}
/* =============================== */
/* :: 5.0 Hero Section CSS End */
/* =============================== */

/* ==================================== */
/* :: 6.0 RequestCard Section CSS Start */
/* ==================================== */
.request-card--ection {
    margin-top: -76px;
}
.request-card__item {
    padding: 32px 24px;
    height: 100%;
}
.requeste-card__skew__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transform: skew(-3deg);
    z-index: -1;
    box-shadow: 3px 6px 15px 0 rgba(39, 39, 39, 0.15);
}
.requeste-card__skew__bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 29%;
    height: 4px;
    background-color: var(--red);
}
.request-card__title {
    font-size: 22px;
}
.request-card__title__sm {
    font-size: 66%;
}
/* ================================== */
/* :: 6.0 RequestCard Section CSS End */
/* ================================== */

/* =============================== */
/* :: 7.0 Help Section CSS Start */
/* =============================== */
.help--section {
    padding: 48px 0;
}

.flip-card-wrapper {
    perspective: 2000px;
}
.flip-card {
    width: 100%;
    min-height: 440px;
    margin: auto;
    transform-style: preserve-3d;
    transition: transform 0.5s ease-in-out;
    box-shadow: 4px 8px 16px 0 rgba(0, 0, 0, 0.15);
    position: relative;
    background-color: #eaeaea;
}
.flip-card.active {
    transform: rotateY(180deg);
}
.flip-card__front,
.flip-card__back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    overflow: hidden;
}
.flip-card__back {
    transform: rotateY(180deg);
    background-color: #eaeaea;
    z-index: 2;
}
.flip-card__top {
    padding: 24px 18px;
}
.flip-card__badge {
    width: 88%;
    position: absolute;
    left: 0;
    bottom: 40px;
}
.flip-card__badge__content {
    width: 100%;
    padding: 18px 21px;
}
.flip-card__badge__content::before,
.flip-card__badge__content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transform: skew(-8deg);
    z-index: -1;
}
.flip-card__badge__content::after {
    width: 25%;
    transform: unset;
}
.flip-card__badge__title span {
    font-size: 72%;
}
.flip-card__thumb {
    z-index: -2;
}
/* =============================== */
/* :: 7.0 Help Section CSS End */
/* =============================== */

/* =============================== */
/* :: 8.0 Benefit Section CSS Start */
/* =============================== */
.benefit__inner {
    max-width: 1920px;
}
.benefit__thumb {
    background-color: var(--light);
}
.benefit__content {
    padding: 32px 20px;
    background-color: var(--primary);
}
.benefit__list {
    gap: 16px;
}
.benefit__content__text {
    margin-bottom: 32px;
}
.benefit__content .section__para {
    max-width: 564px;
}
/* =============================== */
/* :: 8.0 Benefit Section CSS End */
/* =============================== */

/* =============================== */
/* :: 9.0 Offer Section CSS Start */
/* =============================== */
.offer--section {
    padding: 48px 0;
}
.offer__content {
    padding-top: 32px;
}
.offer__thumb {
    width: 100%;
    height: 200px;
    background: url('../imgs/bgs-thumbs/offer-thumb.png') no-repeat right /
        cover;
}
.offer--section .section__para--one {
    max-width: 472px;
}
/* =============================== */
/* :: 9.0 Offer Section CSS End */
/* =============================== */

/* ===================================== */
/* :: 10.0 Explanation Section CSS Start */
/* ===================================== */
.explanation__wrapper {
    background-color: #f3f3f3;
    padding: 32px 16px;
}
.explanation--section .section__head {
    margin-bottom: 32px;
}
.explanation__image {
    margin-bottom: 12px;
}
/* =================================== */
/* :: 10.0 Explanation Section CSS End */
/* =================================== */

/* ================================== */
/* :: 11.0 Strength Section CSS Start */
/* ================================== */
.strength--section {
    padding: 48px 0;
}
.strength__thumb {
    width: 100%;
    height: 240px;
}
.strength__thumb__bg {
    background: url('../imgs/bgs-thumbs/strength-thumb.png') no-repeat left /
        cover;
}
.strength__logo {
    max-width: 128px;
}
.strength--section .section__bottom {
    gap: 32px;
}
/* ================================ */
/* :: 11.0 Strength Section CSS End */
/* ================================ */

/* ================================= */
/* :: 12.0 Form Section CSS Start */
/* ================================= */
.form__wrapper {
    padding: 48px 0;
}
.form__wrapper {
    max-width: 1920px;
}
.form__fields {
    gap: 30px;
}
.form__item {
    gap: 5px;
}
.form__input {
    width: 100%;
    height: 45px;
    padding: 12px 16px;
    color: var(--dark);
    border-radius: 5px;
    border: 1px solid #e1e1e1;
    background-color: var(--white);
    transition: all 0.3s ease-in-out;
    resize: none;
}
.form__input:focus, .form__input:valid {
    border-color: var(--dark-light);
}
.form__item--bottom {
    padding-top: 40px;
    gap: 16px;
}
.form__textarea__content {
    width: 100%;
    min-height: 200px;
}
.form__requ__textarea {
    width: 100%;
    height: 100%;
}
.textarea__list__item {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
    padding: 16px;
    line-height: 1.5;
    color: var(--grey);
    pointer-events: none;
    transition: all .1s ease-in-out;
}
.form__input:valid ~ .textarea__list__item {
    opacity: 0;
    visibility: hidden;
}
.form__requ__item {
	padding-left: 16px;
}
.form__requ__item::after {
    content: '';
    position: absolute;
    top: 9px;
    left: 6px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: var(--grey);
}
.info-icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}
.info-icon svg {
    width: 100%;
    height: 100%;
}
.form__thumb {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    z-index: -2;
    width: 44%;
}
/* =============================== */
/* :: 12.0 Form Section CSS End */
/* =============================== */

/* ============================= */
/* :: 13.0 Footer Area CSS Start */
/* ============================= */
.footer__inner {
    max-width: 1920px;
}
.footer__wrapper {
    max-width: 1320px;
}
.footer__content {
    padding: 48px 0 24px;
}
.footer__logo {
    max-width: 240px;
    margin-bottom: 32px;
}
.footer__widgets {
    gap: 16px;
}
.widget__title {
    font-size: 18px;
    margin-bottom: 9px;
}
.widget__info p,
.footer__nav__item {
    margin-bottom: 9px;
}
.footer__nav__link,
.copyright-text a {
    color: var(--dark);
    gap: 6px;
}
.footer__nav__link:hover,
.copyright-text a:hover {
    color: var(--primary);
}
.footer__nav__link svg {
    color: var(--primary);
}
.footer__nav__link:hover .iconTopRightAnim svg {
    animation: slide-through-topRight-bottomLeft 0.5s ease-in-out forwards;
}

@keyframes slide-through-topRight-bottomLeft {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    40% {
        transform: translate(100%, -100%);
        opacity: 0;
    }
    60% {
        transform: translate(-100%, 100%);
        opacity: 0;
    }
    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}
.footer__right {
    padding-top: 24px;
    gap: 12px;
}
.footer__btn {
    width: 100%;
}
.footer__btn .btn {
    width: 100%;
}
.footer__copyright {
    padding: 21px 0;
}
.footer__obj {
    max-width: 120px;
    opacity: 0.4;
}
/* =========================== */
/* :: 13.0 Footer Area CSS End */
/* =========================== */
