:root {
    --first-clr: #c25151;
    --second-clr: #ff87db;
    --third-clr: #383838;
}

* {
    border: none !important;
    outline: none;
}

a {
    color: #000;
    text-decoration: none;
}

ul {
    padding-left: 0;
    list-style: none;
}

html {
    font-size: 14px;
}

body {
    background-color: #fff;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    height: 100vh;
    background-image: url(../img/banner-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
}

body:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(135deg, var(--second-clr) 0%, var(--first-clr) 100%);
    opacity: 0.6;
    position: fixed;
    z-index: -1;
}

img {
    vertical-align: middle;
}

.navbar-light .navbar-toggler,
.nav-link {
    color: var(--third-clr) !important;
    border-color: transparent !important;
}

.navbar-collapse {
    flex-grow: 0;
}

.h-80-vh {
    height: 80vh;
}

.fw-100 {
    font-weight: 100;
}

.fw-600 {
    font-weight: 600;
}

.mt-6 {
    margin-top: 6rem !important;
}

.text-first-clr {
    color: var(--first-clr);
}

.h2-title {
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.sub-title {
    text-transform: uppercase;
    font-weight: 100;
    font-size: calc(1.05rem + 1.5vw);
}

section {
    padding: 90px 0;
}

.wrapper-content {
    background-color: #fff;
}

.banner-content {
    background-image: url(../img/banner-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.banner-content:after {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom right, var(--second-clr), var(--first-clr));
    opacity: 0.9;
    z-index: -1;
}


/*============ Start About ============*/

#about .about-left img {
    padding: 15px 10px 85px 85px;
    outline: 10px solid #ffcaca;
    outline-offset: -55px;
}

#about .about-right .bi {
    color: var(--first-clr);
    font-size: 1.7rem;
}


/*============ End About ============*/


/*============ Start Features ============*/

#feature {
    background-image: linear-gradient( 135deg, var(--first-clr) 0%, var(--second-clr) 100%);
}

#feature .feature-item {
    background-color: #fff;
    padding: 40px;
    margin-bottom: 20px;
}


/*============ End Features ============*/


/*============ Start Statistics ============*/

#statistics {
    text-align: center;
}

#statistics span {
    font-size: 3rem;
    font-weight: 600;
}

#statistics p {
    text-transform: uppercase;
    font-size: 24px;
    font-weight: 100;
    color: var(--first-clr);
}


/*============ End Statistics ============*/


/*============ Start Service ============*/

#service {
    background-color: #f9faff;
}

#service .details-btn {
    color: var(--first-clr);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0px 0px 54px -21px rgba(0, 0, 0, 0.8);
}

#service img:not(.order-3)~.details-btn {
    margin-bottom: 0 !important;
}


/*============ End Service ============*/


/*============ Start Listing ============*/

#listing {
    counter-reset: item-no;
}

#listing .listing-item {
    padding: 0px 70px 0;
}

#listing h2 {
    position: relative;
}

#listing h2:before {
    counter-increment: item-no;
    content: '0' counter(item-no);
    position: absolute;
    left: -64px;
    top: -5px;
    color: var(--first-clr);
    font-weight: 600;
    font-size: 3rem;
}


/*============ End Listing ============*/


/*============ Start Newsletter ============*/

#newsletter {
    background-image: linear-gradient(135deg, var(--second-clr) 0%, var(--first-clr) 100%);
}

#newsletter input {
    width: 100%;
    line-height: 50px;
    padding: 0 180px 0 25px;
    border-radius: 50rem;
}

#newsletter button {
    line-height: 40px;
    padding: 0 30px;
    background-image: linear-gradient(135deg, var(--first-clr) 0%, var(--second-clr) 100%);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 5px;
    transition: all 0.3s linear;
    word-break: keep-all !important;
}

@media (max-width: 768px) {
    #newsletter button {
        top: 100%;
        right: 49%;
        transform: translate(50%, 50%);
        min-width: 190px;
    }
}


/*============ End Newsletter ============*/


/*============ Start Footer ============*/

footer {
    padding: 60px 0;
}


/*============ End Footer ============*/