#login,
#lets-talk {
    background-image: url("/img/contact-bg.jpg");
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    background-size: cover;
    background-attachment: fixed;
}

#login {
    background-image: url("/img/login-bg.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 0 1000px rgb(199 207 220/90%);
}

#lets-talk .body-frame,
#login .client-content,
#login .member-content,
#login .reset-content {
    box-shadow: 2px 7px 20px rgba(0, 0, 0, 0.3);
    border-radius: 40px;
    position: relative;
}

.client-content .home-icon,
.member-content .home-icon,
.reset-content .home-icon,
.body-frame .home-icon {
    border-radius: 16px;
    position: absolute;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 1%;
    left: -14%;
}

.client-content .home-icon.client {
    background-color: #e9ac13;
}

.member-content .home-icon.member {
    background-color: #e3fdc0;
}

.reset-content .home-icon.reset {
    background-color: #057498;
}

.body-frame .home-icon.lets-talk {
    background-color: #047498;
    left: -7%;
}

.client-content .home-icon.client .icon,
.member-content .home-icon.member .icon,
.reset-content .home-icon.reset .icon,
.body-frame .home-icon .icon {
    color: #d1d9e2;
    font-size: 30px;
    padding: 0;
}

.body-frame h4 {
    font-weight: bold;
}

.input-icons i {
    position: absolute;
    left: 0;
    top: 8%;
}

.input-field {
    width: 100%;
    padding: 10px;
    padding-left: 3rem;
    text-align: left;
    border-radius: 34px;
}

.input-field::placeholder {
    color: #d1d9e2;
}

.input-icons {
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.icon {
    padding: 10px;
    color: #c9c9c9;
    min-width: 50px;
    text-align: center;
    font-size: 17px;
}

h2 {
    color: green;
}

.sign-in-btn {
    color: #057498;
    background-color: #e3fdc0;
    border-radius: 34px;
    border: none;
    font-weight: bolder;
    padding: 0.75rem 0;
    box-shadow: 0px 2px 4px #63abc3;
    transition: all 0.3s;
}

.sign-in-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0px 2px 8px #63abc3;
}

.sign-in-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

b.talk-to-us {
    color: #057498;
}

.social-media ul {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    justify-content: center;
}

.social-media ul li {
    margin: 0 0.75rem;
    border: 2px solid #898989;
    height: 3rem;
    width: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.5s;
    position: relative;
    cursor: pointer;
}

.social-media ul li:hover {
    border-color: #023953;
}

.social-media ul li:hover i {
    color: #ffffff;
}

.social-media ul li i {
    font-size: 1.2rem;
    color: #898989;
    transition: all 0.5s;
    z-index: 2;
}

.social-media ul li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.5s;
    opacity: 0;
    background-color: #057498;
}

.social-media ul li:hover:before {
    opacity: 1;
    transform: scale(0.7);
}

.social-media ul li:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 2px dashed #057498;
    box-sizing: border-box;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.5s;
    opacity: 0;
}

.social-media ul li:hover:after {
    opacity: 1;
    animation: social-media 10s linear infinite;
}

.invert-social-media ul {
    list-style-type: none;
    padding-left: 0;
    display: flex;
    justify-content: center;
}

.invert-social-media ul li {
    margin: 0 0.75rem;
    border: 2px solid #ddd;
    height: 3rem;
    width: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: all 0.5s;
    position: relative;
    cursor: pointer;
}

.invert-social-media ul li:hover {
    border-color: #a2abaf;
}

.invert-social-media ul li:hover i {
    color: #333;
}

.invert-social-media ul li i {
    font-size: 1.2rem;
    color: #ddd;
    transition: all 0.5s;
    z-index: 2;
}

.invert-social-media ul li:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.5s;
    opacity: 0;
    background-color: #fff;
}

.invert-social-media ul li:hover:before {
    opacity: 1;
    transform: scale(0.7);
}

.invert-social-media ul li:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 2px dashed #fff;
    box-sizing: border-box;
    border-radius: 50%;
    z-index: 1;
    transition: all 0.5s;
    opacity: 0;
}

.invert-social-media ul li:hover:after {
    opacity: 1;
    animation: social-media 10s linear infinite;
}

.contact-details li {
    display: flex;
    color: #fff;
}

.contact-details li span a {
    color: rgb(255 237 237);
    font-weight: 400;
}

.contact-details li span a:hover {
    color: #8d8d8d;
}

.contact-details li i {
    margin-top: 0.25rem;
    margin-right: 1rem;
    color: #ddd;
    font-size: 25px;
}

.email-bg {
    position: relative;
    width: 200px !important;
    transform: rotate(342deg);
    filter: invert(1);
    opacity: 0.2;
}

@keyframes social-media {
    0% {
        transform: scale(0.92) rotate(0deg);
    }
    100% {
        transform: scale(0.92) rotate(360deg);
    }
}

.client-content,
.member-content,
.reset-content,
.body-frame .left {
    padding: 5rem 3rem;
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    background-color: #fff;
}

.body-frame.member .left {
    border-radius: 40px !important;
}

.body-frame .right {
    padding: 3rem;
    border-radius: 40px;
    background-color: #047498;
    position: absolute;
    width: 500px;
    height: 93%;
    box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.hello-text-color {
    color: #980431;
}

.poppins-font {
    font-family: "Poppins", sans-serif;
}

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

.right {
    background: url("/img/hand-shaking.png");
    position: relative;
}

.layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    box-shadow: inset 0 0 0 1000px rgb(199 207 220 / 87%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.copyright-footer {
    background-color: #fff;
    color: #404040;
    padding: 0.5rem 0;
    text-align: center;
    position: absolute;
    bottom: 0;
}

#lets-talk input {
    width: 100%;
    padding: 10px;
    padding-left: 2rem;
    text-align: left;
    border-radius: 34px;
}

#lets-talk textarea {
    width: 100%;
    padding: 10px;
    padding-left: 2rem;
    text-align: left;
    border-radius: 34px;
}

.left h4 {
    color: #404040;
}

.left .content {
    color: #898989;
    cursor: pointer;
}

.social-media p,
.forgot-pass-txt {
    color: #898989;
}

.fa-home {
    color: #057498;
}

.social-media a {
    text-decoration: none;
}

.sign-in-btn.client {
    background-color: #e9ac13;
}

.left .content:hover {
    color: #000;
}

.layer p {
    color: #057498;
    font-weight: 600;
}

.darkblue-text {
    color: #057498;
}

.left-lets-talk button {
    background-color: #057498;
    color: #fff;
}

.home-icon.lets-talk .fa-home {
    color: #ffffff;
}

textarea::placeholder {
    color: red;
}

.form-control {
    border: 1px solid #ced4da;
}

.body-frame.admin-hub .home-icon {
    background-color: #057498;
}

.home-icon.reset .fa-home {
    color: #fff;
}

.sign-in-btn.admin-hub {
    color: #fff;
    background-color: #057498;
}

#lets-talk .body-frame {
    background-color: #ffffff;
}

.sos-icon-top {
    max-width: 100px;
}

.talk-to-us input,
.talk-to-us textarea {
    background-color: #f6f7f9;
    border: none;
    padding: 15px 10px 15px 2rem !important;
    font-family: "Poppins", sans-serif;
    font-weight: 200;
}

.talk-to-us p {
    font-family: "Poppins", sans-serif;
}

.contact-details p {
    font-size: 16px;
    font-weight: 600;
}

.talk-to-us label {
    display: none;
}

.talk-to-us .purple-btn {
    background-color: #683f67;
    border-color: #683f67;
    font-family: "Poppins", sans-serif;
}

.talk-to-us .purple-btn:hover {
    background-color: transparent;
    color: #683f67;
}

.home-icon-contact {
    width: 50px;
    padding-bottom: 2rem;
}

.left-lets-talk {
    padding: 2rem 3rem 5rem !important;
}

.contact-div {
    border-radius: 40px !important;
}

.word-wrap-width {
    font-family: "Poppins", sans-serif !important;
    font-size: 16px !important;
}

.word-wrap-width div,
.word-wrap-width p span,
.word-wrap-width p .indent-1 {
    padding-left: 1rem;
}

.mb-1 .word-wrap-width p .pad-left {
    padding-left: 2rem;
}


@media only screen and (max-width: 1730) {
    .body-frame .home-icon.lets-talk {
        left: -10%;
    }
}

@media only screen and (max-width: 1600px) {
    .body-frame .home-icon {
        left: -6.5%;
    }
}

@media only screen and (max-width: 1440px) {
    .body-frame .home-icon {
        left: -6.5%;
    }
}

@media only screen and (max-width: 1399px) {
    .body-frame .home-icon {
        left: -11%;
    }
}

@media only screen and (max-width: 1330px) {
    .body-frame .home-icon {
        left: -10%;
    }
}

@media only screen and (max-width: 1270px) {
    .body-frame .home-icon {
        left: -8%;
    }
}

@media only screen and (max-width: 1246px) {
    .body-frame .home-icon {
        left: -8%;
    }

    .body-frame .right {
        width: 450px;
    }
}

@media only screen and (max-width: 1199px) {
    .body-frame .right {
        background-position: 61% 50%;
    }

    .body-frame .home-icon {
        left: -9%;
    }

    .body-frame .home-icon.lets-talk {
        left: -9%;
    }
}

@media only screen and (max-width: 1120px) {
    .body-frame .right {
        width: 400px;
    }

    .talk-to-us-labels {
        font-size: 24px;
    }

    p {
        margin-bottom: .5rem
    }

    .invert-social-media {
        margin-top: -5px;
    }
}

@media only screen and (max-width: 1024px) {
    .body-frame .home-icon.lets-talk {
        left: 0;
        top: -4.5%;
    }

    p {
        font-size: 14px;
    }

    .form-label {
        font-size: 13px;
    }

    .body-frame .home-icon.lets-talk {
        top: -9%;
    }

    #lets-talk .body-frame {
        margin-top: 2.5rem;
    }

    p {
        margin-bottom: .25rem
    }

    .invert-social-media {
        margin-top: -10px;
    }
}

@media only screen and (max-width: 991px) {
    .body-frame .right {
        position: relative;
        width: 100%;
        transform: translateY(-79px);
    }

    #lets-talk .body-frame.talk-to-us {
        background-color: transparent;
        box-shadow: unset;
    }

    .body-frame .left.contact-div {
        box-shadow: 2px 7px 20px rgba(0, 0, 0, 0.3);
        border-radius: 40px;
        position: relative;
    }

    .word-wrap-width {
        width: 85%;
    }

    .word-wrap-width p {
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

@media only screen and (max-width: 768px) {
    .body-frame .right {
        padding: 5rem 1.5rem;
    }

    .client-content,
    .member-content,
    .reset-content,
    .body-frame .left {
        padding: 5rem 1.5rem;
        border-top-left-radius: 40px;
        border-bottom-left-radius: 40px;
        background-color: #fff;
    }
}

@media only screen and (max-width: 767px) {
    #lets-talk .body-frame {
        margin-top: 1rem;
    }

    .email-bg {
        display: none;
    }

    .body-frame .right {
        height: fit-content;
        padding-top: 4rem;
        padding-bottom: 0.5rem;
    }

    .body-frame .left {
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
        border-bottom-left-radius: 0;
        padding-top: 2rem;
    }

    .body-frame .home-icon.lets-talk {
        left: 0;
        top: -5%;
    }

    .body-frame .right {
        transform: translateY(-58px);
    }
}

@media only screen and (max-width: 640px) {
    .client-content .home-icon.client,
    .member-content .home-icon.member,
    .reset-content .home-icon.reset {
        left: -10%;
    }

    .client-content .home-icon,
    .member-content .home-icon,
    .reset-content .home-icon {
        width: 45px;
        height: 45px;
    }

    .client-content .home-icon.client .icon,
    .member-content .home-icon.member .icon,
    .reset-content .home-icon.reset .icon {
        font-size: 26px;
    }
}

@media only screen and (max-width: 600px) {
    .body-frame .home-icon.lets-talk {
        left: 0;
        top: -4.9%;
    }

    .home-icon.mobile {
        border-radius: 16px;
        position: relative;
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .home-icon.client.mobile {
        background-color: #e9ac13;
    }

    .home-icon.member.mobile {
        background-color: #e3fdc0;
    }

    .home-icon.reset.mobile {
        background-color: #057498;
    }

    .home-icon.client.mobile .icon,
    .home-icon.member.mobile .icon,
    .home-icon.reset.mobile .icon {
        color: #d1d9e2;
        font-size: 30px;
        padding: 0;
    }

    .client-content,
    .member-content,
    .reset-content,
    .body-frame .left {
        padding: 4rem 2rem;
    }
}

@media only screen and (max-width: 575px) {
    .body-frame .home-icon.lets-talk {
        left: 0;
        top: -5.5%;
    }

    .body-frame .right {
        padding-top: 3rem;
    }

    .body-frame .left {
        padding-top: 1.5rem;
    }
}

@media only screen and (max-width: 425px) {
    .talk-to-us-labels {
        font-size: 20px;
    }

    p {
        font-size: 12px;
    }

    .form-label {
        font-size: 13px;
    }

    .body-frame .home-icon.lets-talk {
        top: -5%;
    }
}

@media only screen and (max-width: 360px) {
    .invert-social-media ul li {
        height: 2.5rem;
        width: 2.5rem;
    }
}

@media only screen and (max-width: 280px) {
    .social-media ul li {
        height: 2rem;
        width: 2rem;
    }
}
