#full-body {
    font-family: sans-serif;
}


/* SPINNER STYLING STARTS HERE */

#loader {
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid #E9B44C;
    width: 80px;
    height: 80px;
    animation: spin 1s linear infinite;
}
  
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
  
.center {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}



/* TOP BAR STYLING STARTS HERE */

.top-bar {
    width: 100%;
    background-color: #EEFEFF;
    padding: 5px 0px;
    background: #EEFEFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.17);
    position: sticky;
    top: 0;
    z-index: 99;
}

.top-bar table {
    width: 97%;
    margin-left: auto;
}

.top-bar table td {
    width: 50%;
}

.top-bar table #nav-mail-link {
    margin-left: 10px;
    color: #9B2915;
    font-weight: bold;
}

.top-bar table i {
    color: #9B2915;
    font-size: 14px;
}

.top-bar #td-2 {
    text-align: right;
}

.top-bar table a {
    color: black;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.top-bar table .nav-reg-btn {
    margin-left: 20px;
    color: #9B2915;
    border: 1px solid #9B2915;
    border-right: 1px solid #EEFEFF;
    border-bottom-left-radius: 50px;
    border-top-left-radius: 50px;
    padding: 3px 50px 3px 20px;
    transition: padding-right 0.4s, background-color 0.4s, color 0.4s;
}

.top-bar table .nav-reg-btn:hover {
    background-color: #9B2915;
    color: white;
    padding-right: 80px;
}

.top-bar #signin-link:hover {
    color: #9B2915;
    transition: 0.4s;
}

@media screen and (max-width: 420px) {
    .top-bar #td-1 {
        display: none;
    }
}



/* NAVBAR STYLING STARTS HERE */

.navbar {
    position: sticky;
    z-index: 98;
    top: 38px;
    background-color: white;
    padding: 2px 30px;
    box-shadow: 0px 4px 4px rgba(233, 180, 76, 0.15);
}

.navbar .logo img {
    width: 100%;
}

.navbar .nav-link {
    font-size: 15px;
    padding-left: 20px !important;
    padding-right: 20px !important;
    border-radius: 10px;
    margin-left: 10px;
    font-weight: 900;
    color: black;
    transition: margin-top 0.4s, color 0.4s, background-color 0.4s;
}

.navbar .nav-link:hover {
    color: white;
    background-color: #E9B44C;
    margin-top: -5px;
}

.navbar .active {
    color: white !important;
    background-color: #E9B44C;
}

@media screen and (max-width: 1200px) {
    .navbar .nav-link{
        padding-left: 14px !important;
        padding-right: 14px !important;
        font-weight: bold;
    }
}

@media screen and (max-width: 992px) {
    .navbar .nav-link{
        padding-left: 20px !important;
        padding-right: 20px !important;
        font-weight: 900;
        margin-left: 0px;
        margin-top: 15px;
    }
}

@media screen and (max-width: 600px) {
    .navbar {
        padding: 6px 5px;
    }
}


/* BANNER STYLING STARTS HERE */

/* .banner {
    width: 100%;
    padding-top: 80px;
    padding-bottom: 280px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: -1;
    background-color: #FFFBF5;
}

.banner h1 {
    font-weight: 900;
    font-size: 30px;
    line-height: 3rem;
    position: relative;
    top: 15px;
    color: #E9B44C;
}

@media screen and (max-width: 650px) {
    .banner h1 {
        padding-left: 30px;
        padding-right: 30px;
        font-size: 22px;
        line-height: 2.2rem;
        top: 10px;
    }

    .banner {
        padding-top: 50px;
        padding-bottom: 150px;
    }
} */

.banner {
    width: 100%;
    padding-top: 75px;
    padding-bottom: 185px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.banner h1 {
    color: #E9B44C;
    padding-left: 100px;
    padding-right: 100px;
    font-weight: bolder;
    line-height: 3.5rem;
}

.banner span {
    display: block;
}

.banner #banner-1 {
    font-size: 33px;
    color: white;
}

.banner #banner-2 {
    font-size: 42px;
    background: -webkit-linear-gradient(#F2994A, #E9B44C);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner .banner-hr {
    border: 1px solid white;
    width: 10%;
    margin: auto;
    margin-top: 30px;
}

         
.banner .banner-btn {
    background-image: linear-gradient(to right, #F2994A 0%, #E9B44C 51%, #F2994A  100%);
    margin-top: 40px;
    padding: 10px 25px;
    text-align: center;
    transition: 0.5s;
    background-size: 400% auto;
    color: white;            
    box-shadow: 0 0 1px #eee;
    border-radius: 3px;
    font-weight: bold;
    font-size: 16px;
}

.banner .banner-btn:hover {
    background-position: right center; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
}

.banner .banner-btn i {
    font-size: 20px;
    position: relative;
    top: 2px;
}

@media screen and (max-width: 905px) {
    .banner {
        background-attachment: scroll;
    }
}

@media screen and (max-width: 900px) {
    .banner h1 {
        padding-left: 70px;
        padding-right: 70px;
    }

    .banner {
        padding-bottom: 110px;
        padding-top: 70px;
    }
}

@media screen and (max-width: 575px) {
    .banner h1 {
        padding-left: 30px;
        padding-right: 30px;
    }

    .banner span {
        line-height: 2.5rem;
    }

    .banner #banner-1 {
        font-size: 27px;
        margin-bottom: 10px;
    }

    .banner #banner-2 {
        font-size: 32px;
        font-weight: bolder;
    }

    .banner {
        padding-top: 50px;
    }

    .banner .banner-hr {
        width: 20%;
    }
}

@media screen and (max-width: 430px) {
    .banner #banner-1 {
        font-size: 25px;
    }

    .banner #banner-2 {
        font-size: 28px;
    }

    .banner {
        padding-left: 10px;
        padding-right: 10px;
    }
}
 


/* LEFT PETAL STYLING STARTS HERE */

.left-petal {
    width: 70px;
    height: 80px;
    position: relative;
    top: -20px;
    z-index: -3;
}

.left-petal img {
    width: 100%;
}


/* STRENGTHS SECTION STYLING STARTS HERE */

.strengths {
    width: 100%;
    margin-bottom: 60px;
    margin-top: 70px;
}

.strengths-col {
    text-align: center;
}

.strengths-img {
    width: 50px;
    height: 50px;
    margin: auto;
}

.strengths-img img {
    width: 100%;
}

.strengths-col p {
    font-size: 16px;
    font-weight: bolder;
    color: black;
}

.strengths .hr {
    background-color: #9B2915;
    height: 1px;
    margin: auto;
    width: 20%;
    margin-top: 20px;
    margin-bottom: 18px;
}

@media screen and (max-width: 767px) {
    .strengths {
        margin-top: 50px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 500px) {
    .strengths .hr {
        width: 30%;
    }
}


/* ABOUT US SECTION STYLING STARTS HERE */

.about {
    width: 100%;
}

.about-divs {
    width: 60%;
    margin: auto;
    margin-top: 70px;
}

.about-image-div-1 {
    width: 180px;
    height: 230px;
    border-radius: 30px;
    position: relative;
    z-index: 2;
    border: 1px solid #FFF0D2;
}

.about-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    position: relative;
    top: -100px;
    left: 70px;
    background: linear-gradient(180deg, #EEFEFF 12.5%, rgba(255, 245, 225, 0.35) 100%);
}

.about-image-div-2 {
    width: 180px;
    height: 230px;
    border-radius: 30px;
    float: right;
    position: relative;
    z-index: 1;
    margin-top: -240px;
    border: 1px solid #FFF0D2;
}

.about-image-div-1 img, .about-image-div-2 img {
    width: 100%;
    border-radius: 30px;
    height: 230px;
}

.about #about-title {
    color: #50A2A7;
    font-weight: 900;
}

.about h2 {
    font-weight: bold;
    font-size: 25px;
    color: #E9B44C;
    margin-top: -7px;
}

.about .hr {
    background-color: #9B2915;
    height: 1px;
    width: 10%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.about #about-us-desc {
    color: black;
    font-weight: normal;
}

.about .read-more-btn {
    background-color: #50A2A7;
    border: 1px solid #50A2A7;
    border-radius: 20px;
    color: white;
    margin-top: 20px;
    font-size: 13px;
    font-weight: bolder;
    letter-spacing: 3px;
    padding: 8px 0px;
    width: 80%;
    transition: background-color 0.4s, color 0.4s, width 0.4s;
}

.about .read-more-btn:hover {
    background-color: #50A2A7;
    color: white;
    width: 100%;
}

@media screen and (max-width: 991px) {
    .about .row {
        flex-direction: column-reverse;
    }

    .about-divs {
        width: 45%;
        margin-top: 20px;
    }
}

@media screen and (max-width: 767px) {
    .about-divs {
        width: 60%;
    }

    .about {
        margin-bottom: 0px;
        margin-top: -60px;
    }
}

@media screen and (max-width: 500px) {
    .about .hr {
        width: 18%;
    }
}

@media screen and (max-width: 575px) {
    .about .row .col-md-12 {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-divs {
        width: 70%;
    }
}

@media screen and (max-width: 459px) {
    .about-divs {
        width: 90%;
    }

    .about-image-div-1 {
        left: 25px;
    }

    .about-image-div-2 {
        left: -25px;
    }

    .about-image-div-1, .about-image-div-2 {
        width: 150px;
        height: 200px;
    }

    .about-image-div-1 img, .about-image-div-2 img {
        height: 200px;
    }
}

@media screen and (max-width: 375px) {
    .about-divs {
        width: 100%;
    }
}

@media screen and (max-width: 330px) {
    .about-circle {
        left: 50px;
    }

    .about-image-div-1 {
        left: 0px;
    }

    .about-image-div-2 {
        left: -0px;
    }

    .about-image-div-1, .about-image-div-2 {
        width: 130px;
        height: 170px;
    }

    .about-image-div-1 img, .about-image-div-2 img {
        height: 170px;
    }
}

@media screen and (max-width: 290px) {
    .about-circle {
        left: 30px;
    }
}


/* RIGHT PETAL STYLING */

.right-petal {
    width: 70px;
    height: 140px;
    float: right;
    position: relative;
    top: -140px;
    z-index: -3;
}

.right-petal img {
    width: 100%;
}


/* PACKAGES STYLING STARTS HERE */

.packages {
    width: 100%;
    padding-bottom: 100px;
    background-color: #F5FEFF;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.17);
    border-bottom-left-radius: 50% 50px;
    border-bottom-right-radius: 50% 50px;
    border-top-left-radius: 50% 50px;
    border-top-right-radius: 50% 50px;
    margin-top: 100px;
    margin-bottom: 80px;
}

.plane-img {
    margin: auto;
    width: 75px;
    height: 75%;
    border-radius: 50%;
    position: relative;
    top: -35px;
    margin-bottom: 20px;
}

.plane-img img {
    width: 100%;
}

.packages .tagline {
    color: black;
    font-weight: bolder;
    font-size: 13px;
    letter-spacing: 2px;
}

.packages h2 {
    font-size: 25px;
    font-weight: bolder;
    color: #E9B44C;
}

.hr-img {
    width: 15%;
    height: 20px;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 80px;
}

.hr-img img {
    width: 100%;
    height: 20px;
}

.packages .card {
    margin: auto;
    width: 85%;
    text-align: center;
    border-bottom: 3px solid #E9B44C;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    transition: box-shadow 0.4s;
}

.packages .card:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}

.featured {
    background-color: #9B2915;
    color: white;
    font-weight: bolder;
    width: 100px;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-align: left;
    padding-left: 10px;
    position: absolute;
}

.price {
    background-color: white;
    border: 2px solid #9B2915;
    border-radius: 20px;
    color: #9B2915;
    font-weight: bolder;
    width: 70%;
    padding: 4px 0px;
    padding-top: 5px;
    margin: auto;
    margin-top: -33px;
    box-shadow: 0px 2px 2px #FFE1DC;
    margin-bottom: 20px;
}

.title {
    font-weight: bolder;
    color: #50A2A7;
    font-size: 17px;
}

.date {
    font-weight: bolder;
    color: #E9B44C;
    margin-top: -8px;
    font-size: 13px;
    margin-bottom: 30px;
}

.facility-img {
    width: 33px;
    height: 33px;
    margin: auto;
    margin-bottom: 10px;
}

.facility-img img {
    width: 100%;
}

.facility-name {
    font-weight: bold;
    font-size: 14px;
}

.card .container {
    width: 80%;
}

.package-details-btn {
    background-color: white;
    color: #E9B44C;
    font-weight: bolder;
    border: 1px solid #E9B44C;
    margin-top: 30px;
    padding: 8px 0px;
    font-size: 14px;
    width: 90%;
    transition: color 0.4s, background-color 0.4s, border-radius 0.4s;
}

.package-details-btn:hover {
    background-color: #E9B44C;
    color: white;
    border-radius: 20px;
}

.explore-packages-btn {
    background-color: #F5FEFF;
    border: 1px solid #50A2A7;
    font-weight: 900;
    color: #50A2A7;
    padding: 10px 60px;
    margin-top: 40px;
    transition: background-color 0.4s, color 0.4s, border-radius 0.4s, padding 0.4s;
}

.explore-packages-btn:hover {
    background-color: #50A2A7;
    border-radius: 30px;
    color: white;
    padding: 10px 70px;
}

@media screen and (max-width: 767px) {
    .packages {
        margin-top: 80px;
    }

    .right-petal {
        top: -170px;
    }

    .hr-img {
        width: 30%;
    }

    .packages h2, .packages .tagline {
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* CORE VALUES PETAL */

#petal-core-values {
    margin-top: -35px;
}


/* CORE VALUES STYLING STARTS HERE */

.values {
    width: 100%;
    margin-bottom: 60px;
    margin-top: 60px;
}

.values .tag {
    color: #50A2A7;
    font-weight: 900;
    font-size: 14px;
    letter-spacing: 1.5px;
}

.values h2 {
    font-weight: bold;
    font-size: 25px;
    color: #E9B44C;
    margin-top: -10px;
}

.values .hr {
    background-color: #9B2915;
    height: 1px;
    width: 10%;
    margin-top: 20px;
    margin-bottom: 25px;
}

.values table {
    width: 100%;
}

.values table tr {
    vertical-align: top;
}

.value-img {
    width: 65px;
    height: 65px;
    border: 1px solid #E9B44C;
    border-radius: 50%;
    text-align: center;
    padding: 8px;
}

.value-img img {
    width: 100%;
}

.core-value-title {
    color: #9B2915;
    font-weight: bolder;
    font-size: 15px;
}

.core-value-desc {
    color: black;
    font-size: 14px;
    margin-top: -13px;
}

.values-circle-1 {
    width: 300px;
    height: 300px;
    margin: auto;
    border-radius: 50%;
    text-align: center;
    margin-top: 140px;
}

.values-circle-1 img {
    width: 100%;
    border-radius: 50%;
}

.values-circle-2 {
    width: 300px;
    height: 310px;
    float: right;
    border-radius: 50%;
    background: linear-gradient(180deg, #EEFEFF 12.5%, rgba(255, 245, 225, 0.35) 100%);
    margin-top: -305px;
    left: -100px;
    position: relative;
    z-index: -96;
}

@media screen and (max-width: 1199px) {
    .value-desc-td {
        padding-left: 15px;
    }
}

@media screen and (max-width: 992px) {
    .core-values-col {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .values {
        margin-top: 50px;
    }
}

@media screen and (max-width: 500px) {
    .values .hr {
        width: 18%;
    }
}

@media screen and (max-width: 575px) {
    .values .col-lg-6 {
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* REVIEWS STYLING STARTS HERE */

.reviews {
    background-color: #F5FEFF;
    width: 100%;
    padding-bottom: 90px;
    margin-top: 120px;
}

.reviews-image {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    position: relative;
    top: -35px;
}

.reviews-image img {
    width: 100%;
    height: 70px;
    border-radius: 50%;
}

.reviews h2 {
    font-size: 25px;
    font-weight: bolder;
    color: #E9B44C;
    margin-top: 10px;
}

.fa-circle-left, .fa-circle-right {
    color: #E9B44C;
    font-size: 25px;
}

.fa-circle-left {
    position: relative;
    left: -20px;
}

.fa-circle-right {
    position: relative;
    left: 20px;
}

.reviews-div {
    width: 80%;
    margin: auto;
    background-color: white;
    padding: 20px 30px;
    padding-bottom: 32px;
    border: 1px solid rgb(236, 236, 236);
    border-radius: 10px;
    border-bottom: 3px solid #50A2A7;
    text-align: center;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    transition: box-shadow 0.4s;
}

.reviews-div:hover {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

.person-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 15px;
}

.person-img img {
    width: 100%;
    border-radius: 50%;
    border: 2px solid #E9B44C;
    padding: 2px 2px;
}

.person-name {
    color: #9B2915;
    font-weight: bolder;
}

.fa-star {
    font-size: 12px;
    position: relative;
    top: -10px;
    color: #E9B44C;
}

.person-review {
    color: black;
    font-size: 15px;
    margin-top: 10px;
}

.reviews-div a {
    text-decoration: none;
    font-size: 13px;
    position: relative;
}

.reviews-div a:hover {
    top: -2px;
}

.reviews .container {
    margin-top: -20px;
}

@media screen and (max-width: 767px) {
    .reviews {
        margin-top: 90px;
    }
}

@media screen and (max-width: 450px) {
    .fa-circle-left, .fa-circle-right {
        font-size: 20px;
    }

    .reviews-div {
        width: 90%;
    }

    .fa-circle-left {
        left: -10px;
    }

    .fa-circle-right {
        left: 10px;
    }
}

@media screen and (max-width: 400px) {
    .reviews h2 {
        padding-left: 20px;
        padding-right: 20px;
    }
}


/* LAST RIGHT PETAL STYLING */

#last-right-petal {
    margin-top: -90px;
}


/* CONTACT STYLING STARTS HERE */

.contact {
    width: 100%;
    margin-top: 90px;
    padding-bottom: 150px;
    background-color: #FFFBF5;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.contact-content {
    width: 45%;
    margin: auto;
    padding: 30px 30px;
    padding-bottom: 60px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 0px 0px 10px 10px;
    text-align: center;
}

.contact-content h2 {
    font-size: 25px;
    color: #E9B44C;
    font-weight: 900;
}

.contact-btn {
    background: none;
    border: 2px solid #E9B44C;
    color: #E9B44C;
    font-weight: bolder;
    padding: 5px 30px;
    margin-top: 25px;
    border-radius: 20px;
}

.contact-btn:hover {
    background-color: #E9B44C;
    color: white;
}

@media screen and (max-width: 767px) {
    .contact-content {
        width: 100%;
        background: rgba(0, 0, 0, 0.2);
    }

    .contact {
        padding-bottom: 0px;
        margin-top: 0px;
    }

    .contact-content h2 {
        margin-top: 10px;
    }

    #last-right-petal {
        display: none;
    }
}


/* TOP FOOTER STYLING STARTS HERE */

.top-footer {
    padding: 25px 0px;
    width: 100%;
    background-color: #F5FEFF;
}

.top-footer h3 {
    color: #50A2A7;
    margin-top: 8px;
    font-size: 24px;
    font-weight: bolder;
}

.top-footer .explore-btn {
    background-color: #F5FEFF;
    border: 2px solid #50A2A7;
    color: #50A2A7;
    font-weight: bolder;
    padding: 8px 30px;
    border-radius: 30px;
    transition: color 0.4s, background-color 0.4s;
    float: right;
}

.top-footer .explore-btn:hover {
    background-color: #50A2A7;
    color: white;
}

@media screen and (max-width: 992px) {
    .top-footer .explore-btn {
        float: left;
    }

    .top-footer h3 {
        margin-top: 0px;
    }
}

@media screen and (max-width: 575px) {
    .top-footer .col-lg-8, .col-lg-4 {
        padding-left: 20px;
    }

    .top-footer h3 {
        font-size: 20px;
    }
}


/* FOOTER STYLING STARTS HERE */

footer {
    width: 100%;
    background-color: #262626;
    padding: 50px 0px;
    padding-bottom: 0px;
}

footer h4 {
    color: #50A2A7;
    font-weight: bolder;
    font-size: 20px;
}

footer p {
    color: white;
    font-size: 12px;
    margin-top: 20px;
    color: rgb(198, 198, 198);
    margin-bottom: 25px;
}

footer .social-divs {
    width: 38px;
    height: 38px;
    background: rgba(80, 162, 167, 0.19);
    border-radius: 50%;
    text-align: center;
    margin-right: 10px;
    display: inline-block;
    color: #50A2A7;
    font-size: 19px;
    transition: background-color 0.4s, color 0.4s;
}

footer .social-divs i {
    margin-top: 10px;
}

footer .social-divs:hover {
    color: white;
    background-color: #50A2A7;
}

footer a {
    text-decoration: none;
}

.links {
    margin-top: -22px;
}

footer .contact-links {
    margin-top: -8px;
}

footer .contact-links i, footer .fa-location-dot {
    color: #50A2A7;
    font-size: 15px;
}

footer .footer-hr {
    width: 100%;
    border: 1px solid #50A2A7;
    margin-top: 20px;
}

footer .copyright {
    color: #50A2A7;
    font-weight: 900;
    margin-top: 23px;
}

@media screen and (max-width: 575px) {
    footer .footer-hr {
        width: 90%;
        margin: auto;
    }
}


/* FLOATING ICONS STYLING STARTS HERE */

.floating {
    width: 36px;
    position: fixed;
    top: 202px;
    
}

#fb-icon {
    width: 100%;
    text-align: center;
    color: white;
    background-color: #395693;
    padding: 6px 0px;
    transition: width 0.4s;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

#fb-icon:hover {
    width: 150%;
}

#twitter-icon {
    width: 100%;
    text-align: center;
    color: white;
    background-color: #00A7E7;
    padding: 6px 0px;
    transition: width 0.4s;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

#twitter-icon:hover {
    width: 150%;
}

#linkedin-icon {
    width: 100%;
    text-align: center;
    color: white;
    background-color: #006EAB;
    padding: 6px 0px;
    transition: width 0.4s;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

#linkedin-icon:hover {
    width: 150%;
}

#instagram-icon {
    width: 100%;
    text-align: center;
    color: white;
    background-color: #8A3AB9;
    padding: 6px 0px;
    transition: width 0.4s;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

#instagram-icon:hover {
    width: 150%;
}

#mail-icon {
    width: 100%;
    text-align: center;
    color: white;
    background-color: #C11313;
    padding: 6px 0px;
    transition: width 0.4s;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
}

#mail-icon:hover {
    width: 150%;
}

@media screen and (max-width: 575px) {
    .floating {
        display: none;
    }
}


/* CHATBOT STYLING STARTS HERE */

.chatbot {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    padding-top: 10px;
    color: white;
    background-color: #E9B44C;
    position: fixed;
    z-index: 101;
    bottom: 40px;
    right: 0;
    cursor: pointer;
    margin-right: 15px;
    border-radius: 50%;
}

.chat-window {
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
    width: 340px;
    border-radius: 15px;
    height: 350px;
    position: fixed;
    bottom: 40px;
    margin-right: 80px;
    right: 0px;
    padding: 15px 0px;
    border: 1px solid #E9B44C;
    display: none;
    z-index: 100;
    overflow: hidden;
}

.chat-window p {
    font-weight: 900;
    color: #E9B44C;
    font-size: 12px;
}

.chat-window .btn-close {
    font-size: 10px;
    margin-top: -17px;
}
.chat-room{
    height: 258px;
    background-color: #FFFBF5;
}


.chat-form{
    position: absolute;
    border: 2px solid #E9B44C;
    bottom: 0px;
    width: 100% !important;
    border-radius: 0px 0px 15px 15px;
}
.chat-form input{
    outline: none;
    border: none;
    border-radius: 0px 0px 0px 15px;
    padding: 2px 10px;
    font-size: 18px;
}
.chat-form button{
    color: white;
    background-color: #E9B44C;
    border: 1px solid #E9B44C;
    width: 50px;
    height: 35px;
}
.user-message{
    background-color: #E9B44C;
    color: white !important;
    padding: 5px;
    max-width: 85% !important;
    border-radius: 5px;
    overflow: auto;
}
.admin-message{
    background-color: white;
    color: black !important;
    padding: 5px;
    max-width: 85% !important;
    border-radius: 5px;
    overflow: auto;
}

@media screen and (max-width: 575px) {
    .chat-window p {
        font-size: 15px;
    }
}

@media screen and (max-width: 420px) {
    .chat-window {
        width: 90%;
        margin-right: 20px;
        bottom: 100px;
    }
}




/* PARTNERS SECTION STYLING STARTS HERE */

.partners {
    width: 100%;
    margin-top: 80px;
}

.partners h2 {
    font-size: 25px;
    font-weight: bolder;
    color: #E9B44C;
}

.partners .partner-hr {
    border: 1px solid #9B2915;
    width: 60px;
    margin: auto;
    margin-top: 25px;
    margin-bottom: 30px;
}

.partners .carousel-inner {
    width: 75%;
    margin: auto;
    text-align: center;
}

.partners .partners-div {
    width: 100%;
    margin: auto;
}

.partners .partners-div .partners-img {
    width: 90px;
    height: 90px;
    margin: auto;
}

.partners .partners-div .partners-img img {
    width: 100%;
}

.partners .partners-div .partner-name {
    font-size: 14px;
    font-weight: bold;
    color: gray;
    margin-top: -5px;
}

@media screen and (max-width: 767px) {
    .partners {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 400px) {
    .partners h2 {
        padding-left: 20px;
        padding-right: 20px;
    }
}





/* BLOG STYLING STARTS HERE */

.blog {
    width: 100%;
    margin-top: 70px;
    margin-bottom: 60px;
}

.blog h2 {
    font-size: 28px;
    font-weight: bolder;
    color: #E9B44C;
}

.blog .blog-hr {
    width: 60px;
    border: 1px solid #50A2A7;
    margin: auto;
    margin-top: 15px;
    margin-bottom: 40px;
}

.blog .blog-card {
    width: 100%;
    margin: auto;
}

.blog .blog-card .blog-img {
    width: 100%;
    margin: auto;
}

.blog .blog-card .blog-img img {
    width: 100%;
    height: auto;
}

.blog .blog-card .blog-date {
    margin-top: 5px;
}

.blog .blog-card .blog-date i {
    color: #E9B44C;
}

.blog .blog-card .blog-date .b-date {
    color: gray;
    font-size: 13px;
}

.blog .blog-card #blog-ancor {
    text-decoration: none;
}

.blog .blog-card .blog-title {
    color: black;
    font-weight: bolder;
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.4rem;
    transition: color 0.4s;
}

.blog .blog-card .blog-title:hover {
    color: #E9B44C;
}

.blog .blog-card .blog-btn {
    width: 100%;
    background-color: #E9B44C;
    font-weight: bolder;
    margin-top: 15px;
    color: white;
    transition: background-color 0.4s, color 0.4s, border 0.4s;
}

.blog .blog-card .blog-btn:hover {
    background-color: white;
    color: #E9B44C;
    border: 1px solid #E9B44C;
}

@media screen and (max-width: 767px) {
    .blog {
        margin-bottom:10px;
    }
}

@media screen and (max-width: 575px) {
    .blog .blog-card {
        width: 85%;
    }
}








/* FOLDER SECTION STYLING STARTS HERE */

.folders {
    width: 100%;
    margin-bottom: 60px;
}

.folders h2 {
    color: #E9B44C;
    font-weight: bolder;
    font-size: 25px;
}

.folders .gallery-hr {
    width: 70px;
    border: 1px solid #50A2A7;
    margin: auto;
    margin-bottom: 40px;
    margin-top: 20px;
}

.folders a {
    text-decoration: none;
    color: black;
}

.folders .folder-card {
    width: 100%;
    margin: auto;
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-radius: 10px;
    cursor: pointer;
    border: 1px solid rgb(233, 233, 233);
    transition: background-color 0.3s, border 0.3s;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 1px 0px;
}

.folders .folder-card i {
    color: #E9B44C;
    font-size: 26px;
}

.folders .folder-card .folder-name {
    font-size: 15px;
    font-weight: bold;
}

.folders .folder-card:hover {
    background-color: #FFFBF5;
    border: 1px solid #E9B44C;
}

@media screen and (max-width: 767px) {
    .folders {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 420px) {
    .folders h2 {
        padding-left: 20px;
        padding-right: 20px;
    }
}
