/* Hero Section Styling */

.hero {
    width: 100%;
    background: #f3f3f3;
    border-bottom: 4px solid #d4af37;
    /* background: radial-gradient(circle, rgba(255, 230, 246, 1) 0%, rgba(255, 209, 240, 1) 100%); */
}

.hero .hero-img {
    width: 100%;
}

.hero .hero-img img {
    width: 100%;
}

.hero h1 {
    font-weight: 700;
    font-size: 42px;
    color: #d4af37;
    padding-right: 80px;
    margin-top: 65px;
}

.hero p {
    color: black;
    padding-right: 80px;
    margin-top: 30px;
}

.hero .banner-btn {
    background-color: #1a1a1a;
    margin-top: 40px;
    color: #d4af37;
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 16px;
    padding: 10px 50px;
    border-radius: 0px;
    transition: 0.3s;
}

.hero .banner-btn:hover {
    background-color: #d4af37;
    color: #1a1a1a;
}

@media screen and (max-width: 1150px) {
    .hero h1 {
        margin-top: 10px;
    }
}

@media screen and (max-width: 1000px) {
    .hero h1 {
        font-size: 30px;
        margin-top: 20px;
    }
}

@media screen and (max-width: 980px) {
    .hero h1 {
        font-size: 25px;
        margin-top: 10px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero .banner-btn {
        margin-top: 10px;
    }
}

@media screen and (max-width: 900px) {
    .hero .img-col {
        display: none;
    }

    .hero h1 {
        padding-left: 20px;
        margin-top: 20px;
    }

    .hero p {
        padding-left: 20px;
    }

    .hero .banner-btn {
        margin-left: 20px;
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 512px) {
    .hero h1 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero p {
        padding-left: 15px;
        padding-right: 15px;
        margin-top: 10px;
    }

    .hero .banner-btn {
        margin-left: 15px;
    }
}



/* Services Styling Starts Here */

.services {
    margin-top: 70px;
}

.services h2 {
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
    padding-left: 30px;
    padding-right: 30px;
}

.services .hr {
    width: 80px;
    margin: auto;
    border: 1px solid #d4af37;
    margin-top: 30px;
    margin-bottom: 30px;
}

.services p {
    color: black;
    text-align: center;
    padding-left: 150px;
    padding-right: 150px;
    margin-bottom: 60px;
}

.services .service-card {
    width: 100%;
    padding-top: 270px;
    padding-bottom: 20px;
    padding-right: 20px;
    padding-left: 20px;
    border-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 20px 30px;
}

.services #card-1 {
    background: url(../img/laser-hair-removal.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.services #card-2 {
    background: url(../img/hydrafacial.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.services #card-3 {
    background: url(../img/microneeding.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.services #card-4 {
    background: url(../img/light-therapy.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.services #card-5 {
    background: url(../img/skin-renewal.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.services #card-6 {
    background: url(../img/facial-cupping.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.services #card-7 {
    background: url(../img/peel-transformation.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.services .card-btn {
    width: 100%;
    background-color: #1a1a1a;
    border: 2px solid #d4af37;
    color: #d4af37;
    border-radius: 5px;
    font-size: 12px;
    letter-spacing: 1.5px;
    font-weight: 800;
    padding-top: 12px;
    padding-bottom: 12px;
    transition: 0.3s;
}

.services .card-btn:hover {
    background-color: #d4af37;
    color: #1a1a1a;
}

@media screen and (max-width: 992px) {
    .services p {
        padding-left: 30px;
        padding-right: 30px;
    }
}


/* Consultation Styling */

.consult {
    margin-top: 80px;
    background-color: #f3f3f3;
    border-top: 4px solid #d4af37;
    border-bottom: 4px solid #d4af37;
    /* background: url(../img/consult-book.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed; */
    padding-top: 100px;
    padding-bottom: 120px;
    /* background: #ffe6f6;
    background: radial-gradient(circle, rgba(255, 230, 246, 1) 0%, rgba(255, 209, 240, 1) 100%);
    padding-top: 90px;
    padding-bottom: 100px; */
}

.consult h2 {
    text-align: center;
    color: #d4af37;
    font-weight: 700;
    padding-left: 30px;
    padding-right: 30px;
}

.consult .hr {
    width: 80px;
    margin: auto;
    border: 1px solid #1a1a1a;
    margin-top: 30px;
    margin-bottom: 30px;
}

.consult p {
    color: black;
    text-align: center;
    padding-left: 150px;
    padding-right: 150px;
    margin-bottom: 60px;
}

.consult form span {
    color: red;
}

.consult form input {
    border: 1px solid #d4af37;
}

.consult form label {
    color: #1a1a1a;
}

.consult .form-btn {
    padding-left: 80px;
    padding-right: 80px;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    background-color: #1a1a1a;
    color: #d4af37;
    margin-top: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 5px;
    transition: 0.3s;
}

.consult .form-btn:hover {
    background-color: #d4af37;
    color: #1a1a1a;
}

@media screen and (max-width: 992px) {
    .consult p {
        padding-left: 30px;
        padding-right: 30px;
    }
}


/* AD Styling Starts */

.ad {
    margin-top: 90px;
    margin-bottom: 70px;
}

.ad .container {
    background: url(../img/ad.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 100px;
    padding-bottom: 120px;
    padding-left: 30px;
    padding-right: 30px;
}

.ad p {
    text-align: center;
    font-size: 45px;
    color: black;
    color: white;
}

.ad .ad-btn-services {
    color: white;
    margin-top: 30px;
    font-weight: 700;
    letter-spacing: 1.8px;
    border: 1px solid white;
    border-radius: 5px;
    padding: 15px 50px;
    margin-right: 30px;
}

.ad .ad-btn-services:hover {
    color: #1a1a1a;
    background-color: #d4af37;
    border: 1px solid #d4af37;
}

.ad .ad-btn-contact {
    color: #1a1a1a;
    margin-top: 30px;
    font-weight: 700;
    letter-spacing: 1.8px;
    background-color: white;
    border-radius: 5px;
    padding: 15px 50px;
}

.ad .ad-btn-contact:hover {
    background-color: #d4af37;
}


/* Pop up styling starts here */

.modal-content {
    background-color: #1a1a1a;
}

.modal i {
    color: #d4af37;
    cursor: pointer;
    margin-left: auto;
}

.modal .modal-header {
    border-bottom: none
}

.modal #head {
    text-align: center;
    color: white;
    font-size: 40px;
    font-weight: 600;
    padding-left: 130px;
    padding-right: 130px;
    line-height: 3.5rem;
}

.modal #desc {
    text-align: center;
    color: white;
    padding-left: 130px;
    padding-right: 130px;
    margin-top: 45px;
}

.modal .modal-btn {
    background-color: #d4af37;
    color: #1a1a1a;
    margin-top: 10px;
    margin-bottom: 30px;
    padding-right: 25px;
    padding-left: 25px;
    font-weight: 700;
}

@media screen and (max-width: 992px) {
    .modal #desc {
        padding-left: 0px;
        padding-right: 0px;
    }   

    .modal #head {
        font-size: 30px;
        font-weight: 600;
        padding-left: 20px;
        padding-right: 20px;
        line-height: 2.5rem;
    }
}