#full-body {
    font-family: sans-serif;
}


/* 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 {
    width: 120px;
}

.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-about {
    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: 60px 0px;
    padding-bottom: 130px;
    background: linear-gradient(180deg, rgba(69, 18, 9, 0.933558) 0%, #9B2915 100%);
    text-align: center;
}

.breadcrumbs {
    color: white;
    font-size: 14px;
    font-weight: bolder;
}

.breadcrumbs a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #E9B44C;
}

.banner-hr {
    width: 4%;
    margin: auto;
    margin-top: 30px;
    border: 1px solid #E9B44C;
}

.banner h1 {
    font-size: 33px;
    color: #E9B44C;
    font-weight: bolder;
    margin-top: 30px;
}

.banner .banner-desc {
    color: white;
    padding: 0px 350px;
    letter-spacing: 0.8px;
    line-height: 1.7rem;
    margin-top: 35px;
}

@media screen and (max-width: 1310px) {
    .banner .banner-desc {
        padding: 0px 250px;
    }
}

@media screen and (max-width: 992px) {
    .banner .banner-desc {
        padding: 0px 100px;
    }

    .banner-hr {
        width: 10%;
    }
}

@media screen and (max-width: 767px) {
    .banner .banner-desc, .banner h1 {
        padding: 0px 30px;
    }
}

@media screen and (max-width: 575px) {
    .banner-hr {
        width: 12%;
    }
}



/* LEFT PETAL STYLING STARTS HERE */

.left-petal {
    width: 70px;
    height: 80px;
    position: relative;
    top: -20px;
    z-index: -3;
}

.left-petal img {
    width: 100%;
}



/* TOP CARDS STYLING STARTS HERE */

.top-cards {
    width: 100%;
    margin-bottom: 60px;
    margin-top: -130px;
}

.top-cards .card {
    width: 90%;
    margin: auto;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-bottom: 3px solid #E9B44C;
}

.top-cards .card-circle {
    position: absolute;
    z-index: 94;
    top: 0px;
    left: 0px;
    border-radius: 50%;
    width: 33px;
    height: 33px;
    background: rgba(80, 162, 167, 0.18);
    transform: rotate(8.36deg);
}

.top-cards .card-hr {
    width: 60px;
    height: 7px;
    background-color: #E9B44C;
    border-radius: 5px;
    margin-top: 3px;
}

.top-cards .card h4 {
    font-size: 20px;
    font-weight: bolder;
    margin-top: 20px;
}

.top-cards .card p {
    margin-top: 10px;
    font-size: 15px;
    color: black;
}

@media screen and (max-width: 767px) {
    .top-cards {
        margin-top: -160px;
    }
}


/* STRENGTHS SECTION STYLING STARTS HERE */

.strengths {
    width: 100%;
    margin-bottom: 60px;
}

.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: -40px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 500px) {
    .strengths .hr {
        width: 30%;
    }
}


/* ABOUT US SECTION STYLING STARTS HERE */

.about {
    width: 100%;
    margin-bottom: 60px;
}

.about-divs {
    width: 60%;
    margin: auto;
    margin-top: 80px;
}

.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: bolder;
}

.about h2 {
    font-weight: bolder;
    font-size: 25px;
    color: #E9B44C;
    margin-top: -8px;
}

.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: white;
    border: 1px solid #50A2A7;
    border-radius: 20px;
    color: #50A2A7;
    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: 40px;
    }
}

@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;
    }
}


/* CORE VALUES STYLING STARTS HERE */

.values {
    width: 100%;
    margin-top: 30px;
}

.values .tag {
    color: #50A2A7;
    font-weight: bolder;
    font-size: 14px;
    letter-spacing: 1.5px;
}

.values h2 {
    font-weight: bolder;
    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: 900;
    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: 500px) {
    .values .hr {
        width: 18%;
    }
    
}

@media screen and (max-width: 460px) {
    .values {
        margin-top: -50px;
    }
}

@media screen and (max-width: 575px) {
    .values .col-lg-6 {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media screen and (max-width: 330px) {
    .values {
        margin-top: -90px;
    }
}


/* RIGHT PETAL STYLING */

.right-petal {
    width: 70px;
    height: 140px;
    float: right;
    position: relative;
    top: -20px;
    z-index: -3;
}

.right-petal img {
    width: 100%;
}


/* TOP FOOTER STYLING STARTS HERE */

.top-footer {
    padding: 25px 0px;
    width: 100%;
    margin-top: 120px;
    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: 767px) {
    .top-footer {
        margin-top: 60px;
    }
}

@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;
    }
}