@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    color: #000000;
}

::selection {
    background: var(--red-color);
    color: #fff;
}

:root {
    --red-color: #cd2839;
    --dark-2-color: #323232;
}

img {
    transition: all .3s ease-in-out;
}

.bg-light-wt {
    position: relative;
}

.bg-light-wt::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #f7f7f7 !important;
    z-index: -9;
}

a {
    text-decoration: none;
}

.mt-40 {
    margin-top: 40px;
}

.mtb-40 {
    margin-top: 40px;
    margin-bottom: 40px;
}

.ptb-40 {
    padding-top: 40px;
    padding-bottom: 40px;
}

.web_logo {
    width: 250px;
}

header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 99999;
}

.navbar-toggler{
    border: none;
    color: var(--red-color);
    font-size: 2rem;
    padding: 0;
}
.navbar-toggler:focus{
    border: none;
    box-shadow: none;
}

.navbar-nav {
    gap: 2rem;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-2-color);
    transition: all .3s ease-in-out;
    position: relative;
}

.nav-link:hover {
    color: var(--red-color);
}

.nav-link::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 2px;
    width: 0%;
    background: var(--red-color);
    transition: all .3s ease-in-out;
}

.nav-link:hover::before {
    width: 100%;
}

.top_banner {
    padding: 100px 0;
    position: relative;
}

.top_banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: url(../img/topbanner.jpg) no-repeat;
    background-position: bottom;
    z-index: -9;
}


.top_banner ul {
    list-style: none;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    padding: 0;
}

.top_banner ul li {
    padding: 2rem 0;
    position: relative;
    padding-left: 2.5rem;
}

.top_banner ul li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    width: 30px;
    background: url(../img/icons/bullet-point.png) no-repeat;
    background-size: cover;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
}

.btn {
    text-transform: uppercase;
    font-size: 1rem;
    padding: 8px 30px;
    border-radius: 6px;
    transition: all .3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.btn-red {
    color: #fff;
    border: 2px solid var(--red-color) !important;
    transition: all .3s ease-in-out;
}

.btn-red::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--red-color);
    z-index: -1;
    transition: all .3s ease-in-out;
}

.btn-red::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: #fff;
    z-index: -1;
    transition: all .5s ease-in-out;
}

.btn-red:hover::before {
    width: 0;
}

.btn-red:hover::after {
    width: 100%;
}

.btn-red:hover {
    color: var(--red-color) !important;
}

.title {
    color: var(--dark-2-color);
    font-size: 30px;
    font-weight: 500;
    text-transform: uppercase;
}

.service_icon_box {
    text-align: center;
    padding: 2rem 1rem;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    transition: all .3s ease-in-out;
}

.service_icon_box:hover {
    box-shadow: 0px 25px 20px -20px rgba(0, 0, 0, 0.45);
    transform: translateY(-5px);
}

.service_icon {
    width: 80px;
    margin: auto;
    margin-bottom: 1rem;
}

.service_icon_box p {
    color: var(--dark-2-color);
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.ind_box p {
    background: var(--red-color);
    padding: 1rem;
    text-align: center;
    color: #fff;
    margin: 1rem 0 0;
}

.ind_box:hover img {
    scale: 1.1;
}

.product_card {
    position: relative;
    text-align: center;
    transition: all .3s ease-in-out;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    height: 100%;
}

.product_card:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.product_card:hover img {
    scale: 1.1;
}

.product_card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    z-index: -1;
}

.product_body p {
    font-size: 20px;
    color: var(--dark-2-color);
    font-weight: 600;
}

.four_icon {
    height: 45px;
    width: 45px;
}

.four_icon_body span {
    font-size: 20px;
    font-weight: 500;
    color: var(--dark-2-color);
}

.flex_area_01 {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.round_bg_area {
    height: 500px;
    width: 500px;
    background: url(../img/round_bg_area.webp) no-repeat;
    background-size: contain;
    background-position: center;
    background-attachment: fixed;
    border-radius: 100%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.three_box {
    background: var(--red-color);
    color: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    height: 100%;
}

.three_box_title {
    font-size: 20px;
    font-weight: 600;
}

.subscribe_area {
    padding: 50px 0;
    color: #fff;
    position: relative;
}

.subscribe_area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--dark-2-color);
    z-index: -1;
}

.subscribe_area p {
    margin: 0;
    font-size: 25px;
}

.full_h_img {
    height: 100%;
}

.full_h_img img {
    height: 100%;
    object-fit: cover;
}

.page_cover {
    background: var(--red-color);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page_cover h1 {
    position: relative;
    font-size: 38px;
    font-weight: 600;
    padding-bottom: 0.8rem;
    text-transform: uppercase;
}

.page_cover h1::after,
.page_cover h1::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 4px;
    width: 150px;
    background: #fff;
}

.page_cover h1::after {
    bottom: -15px;
    height: 4px;
    width: 80px;
    background: #fff;
}

.form_area label {
    display: block;
}

.form_area .form-control {
    border: none;
    border-bottom: 1px solid var(--dark-2-color);
    padding: 5px 5px 5px 0;
    border-radius: 0;
}

.form_area .form-control:focus {
    box-shadow: none;
    border-color: var(--red-color);
}

.social_media{
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.icon{
    height: 40px;
    width: 40px;
}