﻿
@import url('https://fonts.googleapis.com/css2?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');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "poppins", sans-serif;
    font-size: 14px;
}

ul {
    margin: 0;
    padding: 0
}

p {
    margin: 0;
}

h1,
h2,
h3,
h4,
h6 {
    margin: 0
}

a {
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }

button,
.btn .btn2,
input,
a {
    transition: all .3s ease-in-out;
}

    input:focus {
        border: 1px solid #fd7702;
        outline: 1px solid #fd7702;
    }

select:focus {
    border: 1px solid #fd7702;
    outline: 1px solid #fd7702;
}

/* HERO */
.hero {
    height: 500px;
    background-image: linear-gradient(rgb(255 111 174 / 77%), rgb(0 0 0 / 33%)), url(https://www.blazingrise.com/landing_page/assets/images/1774877986_banner.jpg);
}

.text-warning {
    --bs-text-opacity: 1;
    color: rgb(16 15 15) !important;
}
/* BUTTON */
.btn-pink {
    background: #ff4081;
    color: white;
    border-radius: 30px;
}

.header-right .header-top {
    padding: 0px 0px;
    width: 100%;
    display: flex;
    gap: 36px;
    margin-bottom: 0;
}

.header-top li {
    list-style: none;
}

.header-right .header-top > li > a {
    color: #000000;
    text-decoration: none;
    font-size: 18px;
}

    .header-right .header-top > li > a i {
        color: #ff4081;
    }
/* IMAGE BOX */
.img-box {
    position: relative;
}

li {
    margin-bottom: 10px;
}

.img-box img {
    width: 250px;
    height: 250px;
    object-fit: cover;
}

/* SERVICES */
.services {
    background: #f8f9fa;
}

.service-card {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 365px;
}

    .service-card h5 {
        font-size: 16px;
    }

    .service-card ul li {
        list-style: disc;
        margin-left: 22px;
        margin-bottom: 10px;
    }

    .service-card p {
        margin-bottom: 14px;
        color: #ff4081;
        font-size: 1px;
    }

a.btn.btn-lg.btn-warning {
    background-color: #ffffff;
    border: 1px solid #ffffff;
    color: #ce6492;
    font-weight: 600;
}

.service-card i {
    font-size: 50px;
    color: #ff4081;
    margin-bottom: 10px;
}


.form-contact {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 35px;
    width: 428px;
    margin: 0 0 0 auto;
}

.fit-box img {
    width: 100%;
    height: auto;
}

.fit-box h2 {
    font-size: 36px;
    color: #656565;
}

.fit-box p {
    color: #ff4081;
    font-size: 20px;
    margin-bottom: 20px;
}

.fit-box ul {
    margin-left: 22px;
}

.transform p {
    color: #ff4081;
    font-size: 16px;
    margin-bottom: 20px;
}

.btn {
    color: #fff;
    background-color: #ff4081;
    border-color: #ff4081;
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    width: fit-content;
    padding: 12px 28px;
    border-radius: 24px;
}

.form-contact .form-control {
    border: none;
    border-bottom: 1px solid #c74f7d;
    border-radius: inherit;
    padding-left: 0;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card {
	background: white;
	padding: 30px 20px;
	border-radius: 15px;
	transition: 0.3s;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
	height: 510px;
}
.service-card img {
	width: 100%;
	height: 200px;
	object-fit: cover;
	margin-bottom: 10px;
	border: 1px solid #e5e5e5;
	background-color: #91bdd8;
}



/* CTA */
.cta {
    background-image: linear-gradient(rgb(103 100 100 / 12%), rgb(30 30 30 / 19%)), url(https://www.blazingrise.com/landing_page/assets/images/1774877986_footer-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
    padding-top: 64px;
    height: 376px;
    width: 100%;
}

    .cta h2 {
        color: #ff4081;
        font-size: 45px;
        margin-bottom: 18px;
    }
/*responsive*/
@media(max-width:992px) {
    .form-contact {
        width: 100%;
    }

    .fit-box h2 {
        font-size: 20px;
    }

    .transform p {
        font-size: 16px;
        margin-bottom: 10px;
    }
}
@media(max-width:768px){
    body{
     font-size: 14px;
    
    }
    .header-right .header-top {
        gap: 10px;
    }
        .header-right .header-top > li > a {
            font-size: 14px;
        }
    .hero {
        height:750px;
    }
    .form-contact {
        padding: 20px 30px;
        margin: 28px 0 0 auto;
    }
    .img-box {
        margin-bottom: 15px;
    }
    .service-card {
        height: auto;
    }
    .cta h2 {
        font-size: 30px;
    }
    .fit-box h2 {
        font-size: 25px;
        margin-top: 25px;
    }
}
