*,
body {
    margin: 0;
    padding: 0;
}

.wrapper {
    position: relative;
}

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    --purple: #884cd2;
    --white: #ffffff;
    --black: #000000;
    --pink: #ff4f9d;
    --bg: #884cd217;
    --bg-gradient-start: #e8f0e1;
    --bg-gradient-end: #cddbc4;
    --card-bg: #fff;
    --text-color: #333;
    --marker-color: #2a52be;
    --font-main: "Inter", sans-serif;
    --font-handwriting: "Permanent Marker", cursive;
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-heavy: rgba(0, 0, 0, 0.2);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--black);
    margin-bottom: 10px;
    line-height: 38px;
    font-family: "PT Serif", serif;
}

h1 {
    font-size: 30px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 26px;
}

h4 {
    font-size: 24px;
}

h5 {
    font-size: 22px;
}

h6 {
    font-size: 20px;
}

p {
    margin-bottom: 15px;
    text-align: justify;
    font-size: 16px;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 28px;
    font-family: "Open Sans", sans-serif;
}

p:last-child {
    margin-bottom: 0px;
}

a {
    color: var(--pink);
    text-decoration: none;
    font-family: "Open Sans", sans-serif;
}

a strong:hover {
    color: var(--pink);
}

.bg-1 {
    background: var(--bg);
}

li {
    list-style: none;
    font-family: "Open Sans", sans-serif;
}

.bg-2 {
    background: #222;
}

.ptb-40 {
    padding: 40px 0px;
}

img {
    display: -webkit-box;
    cursor: pointer;
}

.box-49 {
    width: 49%;
}

.container {
    width: 90%;
    margin: 0px auto;
    display: grid;
}

.flex-row {
    display: flex;
    flex-wrap: wrap;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.call-btn {
    position: fixed;
    bottom: 5%;
    right: 3%;
    z-index: 999;
}

.call-btn a {
    margin-bottom: 20px;
    display: block;
}

.call-btn a img {
    max-width: 50px;
}

.site-banner img {
    width: 100%;
}

.top-header {
    background: var(--purple);
    padding: 10px 0px;
}

.top-header .left-top {
    display: flex;
    align-items: center;
}

.top-header .left-top a {
    text-decoration: none;
    margin-right: 20px;
    font-size: 16px;
    color: var(--white);
}

.top-header .left-top a i {
    color: var(--pink);
    padding-right: 5px;
    font-size: 15px;
}

.top-header .right-top ol li,
.top-header .left-top a {
    list-style: none;
}

.top-header .right-top ol li a {
    border-radius: 50px;
    border: 1px solid var(--white);
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

.top-header .right-top ol li:last-child a {
    margin-right: 0px;
}

.top-header .right-top ol li a i {
    color: var(--pink);
}

.main-header {
    background: #f9f8f6;
    padding: 15px 0px;
}

.main-header .left-header a img {
    max-width: 350px;
}

.main-header .right-header ul li a {
    color: rgba(0, 0, 0, .55);
    padding: 15px 20px;
    display: block;
}

.main-header .right-header ul li a.active,
.main-header .right-header ul li a:hover {
    color: var(--pink);
}

.main-header .right-header a.set-btn {
    background: var(--pink);
    font-weight: 600;
    transition: .5s;
    padding: 15px 25px;
    border-radius: 50px;
    margin-left: 30px;
}

#container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

#slider {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    float: left;
}

#slider img {
    width: 100%;
    height: 500px;
}

.slide {
    position: absolute;
    width: 100%;
}

.slide-copy {
    position: absolute;
    bottom: 25%;
    padding: 50px 0px;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
}

.slide-copy h2 {
    color: var(--white);
    text-align: center;
    font-size: 40px;
    margin-bottom: 20px;
}

.slide-copy p {
    color: var(--white);
    text-align: center;
    padding: 0px 200px;
}

#prev,
#next {
    cursor: pointer;
    position: absolute;
    z-index: 100;
    top: 50%;
}

#container #next,
#container #prev {
    max-width: 50px;
}

#prev {
    left: 1%;
}

#next {
    right: 1%;
}

.about-main .left-about {
    width: 35%;
}

.about-main .left-about img {
    width: 100%;
    border: 4px inset var(--pink);
}

.about-main .right-about {
    width: 65%;
}

.about-main .right-about .cont-set {
    padding: 0px 0px 0px 30px;
}

a.set-btn {
    background: var(--pink);
    font-weight: 600;
    transition: .5s;
    padding: 15px 25px;
    border-radius: 50px;
    margin-top: 5px;
    display: inline-block;
    color: var(--white);
    font-family: "PT Serif", serif;
}

.about-main .left-about img:hover {
    border: 4px inset var(--purple);
}

.main-header .right-header a.set-btn:hover,
a.set-btn:hover {
    background: var(--purple);
}

.cat-main {
    background: #f9f8f6;
    border-left: 5px solid var(--pink);
    border-radius: 10px;
    padding: 20px 20px;
    transition: 0.5s;
    margin-bottom: 20px;
}

.cat-main:hover {
    background: var(--pink);
    border-left: 5px solid var(--purple);
}

.cat-main:hover p,
.cat-main:hover span {
    color: var(--white);
}

.cat-main:hover .cat-left img {
    transform: scale(1.2);
}

.cat-main .cat-left {
    width: 30%;
    border-radius: 10px;
    overflow: hidden;
}

.cat-main .cat-left img {
    width: 100%;

    border-radius: 10px;
    transition-duration: 4s;
}

.cat-main .cat-right {
    width: 70%;
}

.cat-main .cat-right .cat-set {
    padding-left: 20px;
}

.cat-main .cat-right .cat-set span {
    font-size: 25px;
    margin-bottom: 10px;
    display: block;
}

.all-service {
    margin-top: 20px;
}

.about-main ul {
    padding-left: 25px;
    margin-top: 15px;
}

.about-main ul li {
    list-style: square;
    padding-bottom: 20px;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

.polaroid {
    background-color: var(--card-bg);
    padding: 20px 20px 50px;
    border-radius: 2px;
    box-shadow: 0 0.25rem 0.5rem var(--shadow-light), 0 0.625rem 1.25rem var(--shadow-light);
    margin-bottom: 40px;
    position: relative;
    width: 20%;
    transition: transform 0.3s ease-in-out;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><filter id="n" x="0" y="0"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="10" stitchTiles="stitch"/></filter><rect width="100" height="100" filter="url(%23n)" opacity="0.12"/></svg>');
    background-size: cover;
}

.polaroid:hover {
    transform: scale(1.05) rotate(0deg) !important;
    z-index: 10;
    box-shadow: 0 0.5rem 1rem var(--shadow-heavy), 0 1rem 2rem var(--shadow-heavy);
}

.polaroid img {
    width: 100%;
    display: block;
    animation: fadeInPhoto 5s ease-in-out forwards;
    filter: brightness(0);
}

.polaroid figcaption {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    text-align: center;
    font-family: var(--font-handwriting);
    font-size: 1.2rem;
    color: var(--marker-color);
    line-height: 1;
}

@keyframes fadeInPhoto {
    0% {
        filter: brightness(0) sepia(1);
        opacity: 0.8;
    }

    50% {
        filter: brightness(0.5) sepia(0.5);
        opacity: 0.9;
    }

    100% {
        filter: brightness(1) sepia(0);
        opacity: 1;
    }
}

#price {
    text-align: center;
    margin-top: 20px;
}

.plan {
    width: 24%;
}

.plan-inner {
    background: var(--bg);
    margin: 0 auto;
    position: relative;
}

.entry-title {
    background: #53CFE9;
    height: 140px;
    position: relative;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
}

.entry-title > h3 {
    background: #20BADA;
    font-size: 20px;
    padding: 5px 0;
    text-transform: uppercase;
    font-weight: 700;
    margin: 0;
}

.entry-title .price {
    position: absolute;
    bottom: -25px;
    background: #20BADA;
    height: 95px;
    width: 95px;
    margin: 0 auto;
    left: 0;
    right: 0;
    overflow: hidden;
    border-radius: 50px;
    border: 5px solid #fff;
    line-height: 80px;
    font-size: 28px;
    font-weight: 700;
}

.price span {
    position: absolute;
    font-size: 9px;
    bottom: -10px;
    left: 30px;
    font-weight: 400;
}

.entry-content {
    color: #323232;
}

.entry-content ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.entry-content ul li {
    list-style: none;
}

.entry-content li {
    border-bottom: 1px solid #E5E5E5;
    padding: 10px 0;
}

.entry-content li:last-child {
    border: none;
}

.btn {
    padding: 30px 0px;
    text-align: center;
}

.btn a {
    background: #323232;
    padding: 10px 30px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none
}

.hot {
    position: absolute;
    top: -7px;
    background: #F80;
    color: #fff;
    text-transform: uppercase;
    z-index: 2;
    padding: 2px 5px;
    font-size: 9px;
    border-radius: 2px;
    right: 10px;
    font-weight: 700;
}

.basic .entry-title {
    background: #75DDD9;
}

.basic .entry-title > h3 {
    background: #44CBC6;
}

.basic .price {
    background: #44CBC6;
}

.standard .entry-title {
    background: #4484c1;
}

.standard .entry-title > h3 {
    background: #3772aa;
}

.standard .price {
    background: #3772aa;
}

.ultimite .entry-title > h3 {
    background: #DD4B5E;
}

.ultimite .entry-title {
    background: #F75C70;
}

.ultimite .price {
    background: #DD4B5E;
}

.contact-us iframe {
    width: 100%;
    margin-top: 40px;
    height: 400px;
    border: none;
}

.contact-us .cont-box {
    margin-top: 20px;
}

.contact-us .cont-box {
    width: 32%;
    border-radius: 10px;
    border: 1px solid var(--pink);
    background: var(--white)
}

.contact-us .cont-box .cont-box-in {
    padding: 20px 20px;
}

.contact-us .cont-box .cont-box-in i {
    font-size: 24px;
    color: var(--pink);
    padding-right: 10px;
}

.contact-us .cont-box .cont-box-in span {
    font-size: 24px;
}

.contact-us .cont-box .cont-box-in p {
    color: #888;
    margin-top: 7px;
}

footer {
    background: #1c1a1d;
}

footer .footer-4 {
    width: 24%;
    padding: 30px 0px
}

footer .footer-4 span {
    color: #fff;
    font-size: 25px;
    padding-bottom: 20px;
    display: block;
    font-weight: 600;
}

footer .footer-4 p {
    color: #fff;
    text-align: left;
    line-height: 32px;
}

footer .footer-4 ul {
    margin-left: 30px;
}

footer .footer-4 ul li {
    list-style: square;
    color: #fff;
}

footer .footer-4 ul li a {
    color: #fff;
    display: block;
    padding: 4px 0px;
}

footer .footer-4 .last-footer {
    margin-left: 0px;
}

footer .footer-4 .last-footer li {
    list-style: none;
    padding-bottom: 10px;
}

footer .footer-4 .last-footer li a {
    font-size: 18px;
}

footer .footer-4 .last-footer li a i {
    padding-right: 10px;
    color: #884cd2;
}

footer .text-p {
    text-align: center;
    color: #747d88;
    padding: 20px 0px;
    font-size: 15px;
    border-top: 1px solid #747d88;
}

.location-set ul {
    padding-left: 0px;
    margin-top: 20px;
}

.location-set ul li {
    list-style: none;
    width: 24%;
    padding-bottom: 0px;
    margin-bottom: 10px;
}

.location-set ul li a {
    background: var(--pink);
    font-weight: 600;
    transition: .5s;
    padding: 15px 25px;
    border-radius: 20px;
    color: var(--white);
    display: block;
}

.hamburger {
    cursor: pointer;
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
    width: 30px;
    display: none;
}

.hamburger span {
    background: #000;
    height: 3px;
    width: 100%;
    margin: 4px 0;
    border-radius: 2px;
    display: block;
}

@media only screen and (max-width:1200px) {
    .main-header .right-header ul li a {
        padding: 15px 13px;
    }
}

@media only screen and (max-width:1024px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 86px;
        left: 0;
        background: #fff;
        width: 100%;
        flex-direction: column;
        display: none;
        z-index: 999;
    }

    .nav-links.show {
        display: flex;
    }

    .top-header {
        display: none;
    }

    .main-header .right-header a.set-btn {
        margin-left: 0px;
        border-radius: 0px;
    }

    .contact-us iframe {
        height: 300px;
    }

}

@media only screen and (max-width:991px) {
    .contact-us .cont-box {
        width: 49%;
    }
}

@media only screen and (max-width:767px) {
    .polaroid {
        width: 40%;
    }

    .box-49 {
        width: 100%;
    }

    .plan,
    .location-set ul li,
    footer .footer-4 {
        width: 49%;
    }

    .plan {
        margin-bottom: 20px;
    }

    .about-main .left-about {
        margin-bottom: 20px;
    }

    .about-main .left-about,
    .about-main .right-about {
        width: 100%;
    }

    .about-main .right-about .cont-set {
        padding: 0px;
    }

    .cat-main .cat-left img {
        height: 150px;
    }

    .cat-main .cat-left {
        width: 25%;
    }

    .cat-main .cat-right {
        width: 75%;
    }

    #slider,
    #slider img {
        height: 400px;
    }

    #prev,
    #next {
        top: 34%;
    }

}

@media only screen and (max-width:580px) {

    #slider,
    #slider img {
        height: 300px;
    }

    .main-header .left-header a img {
        max-width: 300px;
    }

    .slide-copy {
        bottom: 15%;
    }

    .slide-copy p {
        padding: 0px 60px;
    }

    .slide-copy h2 {
        font-size: 30px;
        margin-bottom: 10px;
    }

    #prev,
    #next {
        top: 43%;
    }

    .contact-us iframe {
        height: 200px;
    }

    .cat-main .cat-right,
    .cat-main .cat-left,
    .polaroid,
    .plan,
    footer .footer-4,
    .contact-us .cont-box {
        width: 100%;
    }

    .ptb-40 {
        padding: 20px 0px;
    }

    .cat-main .cat-left img {
        height: 400px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width:480px) {
    .slide-copy {
        bottom: 20%;
        padding: 12px 0px;
        width: 90%;
        left: 5%;
    }

    .slide-copy h2 {
        font-size: 20px;
        margin-bottom: 0px;
    }

    .slide-copy p {
        font-size: 14px;
        line-height: 22px;
    }

    #slider,
    #slider img {
        height: 250px;
    }

    .nav-links {
        top: 70px;
    }

    .hamburger {
        margin-top: 15px;
    }

}
