/* ========================= */
/* :: 1.0 WEB FONTS  */
/* ========================= */
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ================================== */
/* :: 2.0 GLOBAL Variable Define CSS  */
/* ================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {

    /* Google Font */
    --lato: "Lato", sans-serif;
    --poppins: "Poppins", sans-serif;

    /* Color Palette */
    --white: #fff;
    --black: #000;
    --primary: #A70220;
    --dark: #070120;
}

/* ========================= */
/* :: 3.0 COMMON CSS */
/* ========================= */
html,
body {
    height: 100%;
    scroll-behavior: smooth;
    position: relative;
}

body {
    overflow-x: hidden;
}

section {
    overflow-x: hidden;
}

body {
    color: #575757;
    font-size: 16px;
    font-family: var(--lato);
    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 {
    margin: 0;
    padding: 0;
    color: var(--dark);
    font-family: var(--lato);
    text-transform: uppercase;
    font-weight: 600;
}

section,
.section {
    position: relative;
}

.container {
    width: 100%;
    margin: 0 auto;
}

a,
button {
    text-decoration: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

a,
button {
    outline: none;
    box-shadow: none;
}

button {
    background: unset;
    padding: 0;
    border: none;
}

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;
    border: none;
    box-shadow: none;
}

*+address,
*+dl,
*+fieldset,
*+figure,
*+ol,
*+p,
*+pre,
*+ul {
    margin: 0;
    padding: 0;
}

*::-moz-selection {
    background: var(--primary);
    color: var(--white);
    text-shadow: none;
}

::-moz-selection {
    background: var(--primary);
    color: var(--white);
    text-shadow: none;
}

::selection {
    background: var(--primary);
    color: var(--white);
    text-shadow: none;
}

*::-moz-placeholder {
    color: var(--grey);
    font-size: 16px;
    opacity: 1;
}

*::placeholder {
    color: var(--grey);
    font-size: 16px;
    opacity: 1;
}

/* Resusable Component and CSS Start */
/* Resusable Component and CSS End */

/* Bootstrap Customized CSS Start */
.fs-1 {
    font-size: 40px !important;
    line-height: 1.2 !important;
}

.fs-2 {
    font-size: 30px !important;
    line-height: 1.25 !important;
}


.btn {
    text-transform: uppercase;
    font-family: var(--poppins);
    font-weight: 700;
    border-radius: 40px;
    padding: 12px 22px;
    font-size: 14px;
    transition: all 0.3s ease;
}


.btn--main {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
    transition: all .3s ease;
}

.btn--main:hover {
    border-color: #f30c36;
    background: #f30c36;
    color: #fff;
}


.text-primary {
    color: var(--primary) !important;
}

/* Bootstrap Customized CSS End */


/* =============================== */
/* :: 4.0 Header Area CSS Start */
/* =============================== */


.header__menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    max-width: 280px;
    background: linear-gradient(0deg, rgb(255 255 255) 0%, rgb(255 231 236) 100%);
    border-right: 1px solid rgb(255 231 236);
    padding: 20px;
    transition: all .3s ease;
    transform: translateX(-100%);
}

.header__menu.show {
    transform: translateX(0);
}

.header__menu ul li a {
    display: block;
    padding: 14px 0px;
    border-bottom: 1px solid rgb(255 223 230 / 85%);
    font-size: 18px;
    text-align: center;
    color: #000;
    letter-spacing: 0.03em;
    font-family: var(--poppins);
}

.header__menu ul li:hover a {
    color: #A70220;
}

.header__menu ul {
    padding-top: 40px;
}

button.header__mobileBar {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--primary);
    color: var(--primary);
    font-size: 22px;
}

.header {
    padding: 12px 0px 16px;
    border-bottom: 1px solid #0000001a;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 99;
}


/* =============================== */
/* :: 4.0 Header Area CSS End */
/* =============================== */

/* =============================== */
/* :: 5.0 Hero Section CSS Start */
/* =============================== */


.hero--section {
    padding: 140px 0px 40px;
    background: linear-gradient(180deg, rgba(167, 2, 32, 0.02) 0%, rgba(167, 2, 32, 0.11) 100%);
}

.hero__content h1 {
    margin-bottom: 11px;
}

.hero__content p {
    margin-bottom: 19px;
    font-size: 18px;
    line-height: 1.3;
}


.hero__content {
    margin-bottom: 36px;
    text-align: center;
}

.hero__thumb-smImg {
    position: absolute;
    left: -6px;
    bottom: 16px;
    max-width: 120px;
    border: 2px solid var(--primary);
    border-radius: 50%;
}

.hero__thumb-obj {
    position: absolute;
    top: -40px;
    right: 0;
    z-index: -1;
}

.hero__thumb-mainImg {
    max-width: 100%;
    border-radius: 11px;
}

/* =============================== */
/* :: 5.0 Hero Section CSS End */
/* =============================== */

/* =============================== */
/* :: 6.0 About-section CSS Start */
/* =============================== */

.about--section {
    padding: 40px 0px 40px;
    z-index: 1;
}

.about--section::after {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40%;
    background-color: #FFF4EC;
    content: "";
    z-index: -1;
}

.about__header-title {
    margin-bottom: 10px;
}

.about__header-content p {
    font-size: 17px;
    line-height: 24px;
    margin-bottom: 14px;
}

.link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #000;
    font-weight: 600;
    font-family: var(--poppins);
}

.link:hover {
    color: var(--primary);
}

.link span {
    transition: all 0.3s ease;
}

.link:hover span {
    transform: translateX(10px);
}


.about__header {
    margin-bottom: 30px;
    text-align: center;
}


.about__slide img {
    width: 100%;
    height: 230px;
    border-radius: 10px;
}

.about__slider-active {
    margin-bottom: 13px;
}

.about__slider-navs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.about__slider-navs {}

.about__slider-navs button:hover svg path {
    stroke: var(--primary)
}


/* =============================== */
/* :: 6.0 About-section CSS End */
/* =============================== */

/* =============================== */
/* :: 7.0 Airtool-section CSS Start */
/* =============================== */

.airtool--section {
    padding: 40px 0px 40px;
}

.airtool__content h2 {
    margin-bottom: 12px;
}

.airtool__content p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 15px;
}

.airtool__content h3 {
    margin-bottom: 24px;
}

.airtool__content {
    margin-bottom: 35px;
    text-align: center;
}

.airtool__thumb-smImg {
    position: absolute;
    right: -10px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    top: -34px;
}

.airtool__thumb-obj {
    position: absolute;
    bottom: -37px;
    right: 0;
    z-index: -1;
    max-width: 86px;
}

/* =============================== */
/* :: 7.0 Airtool-section CSS End */
/* =============================== */

/* =============================== */
/* :: 8.0 Features CSS Start */
/* =============================== */

.feature--section {
    padding: 40px 0px 40px;
    background: #A70220;
    position: relative;
    z-index: 1;
}

.feature__obj-left {
    position: absolute;
    left: 0;
    top: 40%;
    z-index: -1;
    opacity: 0.2;
}

.feature__obj-right {
    position: absolute;
    right: 0;
    top: 30%;
    z-index: -1;
    opacity: 0.2;
}

.featureItem__img {
    width: 220px;
    height: 220px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    padding: 3px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.material__content {
    margin-bottom: 28px;
    text-align: center;
}

.featureItem__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

.featureItem__content h4 {
    color: #fff;
    margin-bottom: 12px;
}

.featureItem__content p {
    color: #FFFFFF;
    font-size: 18px;
    line-height: 25px;
}

.featureItem {
    text-align: center;
}

/* =============================== */
/* :: 8.0 Features CSS End */
/* =============================== */

/* =============================== */
/* :: 9.0 Section CSS Start */
/* =============================== */

.material--section {
    padding: 40px 0px 40px;
}

.material__content h2 {
    margin-bottom: 10px;
}

.material__content p {
    margin-bottom: 19px;
    font-size: 17px;
    line-height: 23px;
    font-family: var(--poppins);
}

.material__content {
    margin-bottom: 28px;
}

.material__thumb {
    height: auto;
    position: relative;
}

.material__thumb-img1 {
    width: 80%;
    position: relative;
}

.material__thumb-img2 {
    width: 80%;
    margin: 0 0 0 auto;
    display: block;
    margin-top: -45%;
}

.material__thumb-obj1 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.material__thumb-obj2 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}

/* =============================== */
/* :: 9.0 Section CSS End */
/* =============================== */

/* =============================== */
/* :: 10.0 Contact CSS Start */
/* =============================== */


.contact--section {
    background: #A702200A;
    padding: 40px 0px 40px;
}

.contact__content h2 {
    margin-bottom: 20px;
}

.contact__input label {
    display: block;
    margin-bottom: 0px;
    font-weight: 600;
    color: #000000;
    font-family: var(--poppins);
}

.contact__input input {
    width: 100%;
    height: 35px;
    background: transparent;
    border-bottom: 1px solid #0000002b;
}

.contact__input {
    margin-bottom: 22px;
}

.contact__form {
    margin-bottom: 36px;
}

.contact__thumb img {
    border-radius: 14px;
}

/* =============================== */
/* :: 10.0 Contact CSS End */
/* =============================== */

/* =============================== */
/* :: 11.0 Footer CSS Start */
/* =============================== */

.footer__top {
    padding: 32px 0px 20px;
}

footer.footer {
    background: #1E1E1E;
}

.footer__logo {
    margin-bottom: 27px;
    text-align: center;
}

.footer__widget h5 {
    font-size: 20px;
    color: #FFFFFF;
    font-weight: 600;
    text-transform: capitalize;
    font-weight: 400;
    margin-bottom: 10px;
}

.footer__widget {
    margin-bottom: 19px;
}

.footer__widget ul li a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    padding: 4px 0px;
    gap: 10px;
}

.footer__widget ul li a span.icon {
    flex: 0 0 auto;
    width: 20px;
}

.footer__widget ul li a:hover {
    color: var(--primary);
}

.footer__bottom {
    text-align: center;
    padding: 17px 10px;
    border-top: 1px solid #fff2;
}

.footer__bottom p {
    color: #FFFFFF;
}


/* =============================== */
/* :: 11.0 Footer CSS End */
/* =============================== */