@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,700);

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
    font-family: "Roboto";
    text-decoration: none;
}

:root {
    --color-darkblue: #020817;
    --color-blue: #007aff;
    --sec-p: 16px;
}

@media screen and (min-width: 678px) {
    :root {
        --sec-p: 28px;
    }
}

body {
    background-color: #fff;
    overflow-x: hidden;
}

/* navbar */
header {
    position: relative;
    background-color: #020817;
    z-index: 999;
}

.nav {
    position: relative;
    max-width: 1280px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
    min-height: 64px;
    height: 64px;
    justify-content: space-between;
    margin: 0 auto !important;
}

.nav__btn {
    margin: 0px;
    padding: 6px 14px !important;
    border-radius: 5px;
    background-color: #141d35 !important;
}

.nav > .nav-header {
    flex: 0.95;
    max-width: 155px;

    .logo-text {
        display: flex;
        gap: 10px;
        justify-content: start;
        align-items: center;
        font-size: 18px;
        font-weight: 700;
        line-height: 21.09px;
        color: #ffffff;
    }
}

.nav > .nav-list {
    display: flex;
    gap: 1rem;
    margin-left: auto;
    justify-content: center;
    align-items: center;
}

.nav > .nav-list > li {
    position: relative;
    list-style-type: none;
}

.nav > .nav-list > li a {
    text-decoration: none;
    color: #ffffffb2;
    cursor: pointer;
    padding: 6px 0px;
    border-radius: 5px;
    height: 32px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.nav > .nav-list > li a:hover {
    color: #fff;
}

.nav > .nav-list > li a.nav-btn-sm {
    display: flex;
    text-decoration: none;
    cursor: pointer;
    padding: 8px 15px;
    border-radius: 4px;
    height: 32px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    min-height: 36px !important;
}

.nav-btn-sm:hover {
    background: #eeeff2;
}

.nav > .nav-list > li a.pre-btn {
    display: none;
}

.nav > #nav-check {
    display: none;
}

.nav-btn .nav-check {
    cursor: pointer;
}
.py-8{
    padding-top: 8px;
    padding-bottom: 8px;
}

.account-dropdown {
    display: none;
    background: #020817;
    border: 1px solid #272d3c;
    position: absolute;
    width: 200px;
    padding: 16px;
    top: 24px;
    right: 0;
    list-style-type: none;
    z-index: 9999;

    li:first-child a {
        color: #fff;
    }

    li a {
        display: block;
        padding: 8px 0;
        height: auto !important;
    }

    li a:hover {
        color: #fff;
    }

    li a.user-accout {
        display: grid;

        span {
            font-size: 12px;
            font-weight: 400;
            line-height: 18px;
            color: #9b9faa;
        }
    }
}

/* .user-btn:hover .account-dropdown {
    display: block;
} */

.user-btn > a {
    display: flex;
    align-items: center;
    gap: 4px;
}

.account-dropdown > li:not(:first-child) a {
    padding: 8px 12px;
    margin-top: 8px;
}

.account-dropdown > li:first-child a {
    padding: unset;
    margin-bottom: 8px;
}
.arrow_image {
    transition: transform 0.25s ease;
}

.arrow_image.rotate {
    transform: rotate(180deg);
}
.d-flex {
    display: flex;
}
.flex-col {
    flex-direction: column;
}
.justify-content-center {
    justify-content: center;
}
.gap-2 {
    gap: 8px;
}
.py-2 {
    padding-top: 8px;
    padding-bottom: 8px;
}

/* .account-dropdown>li:last-child {
    padding-top: 8px;
} */

/* error */
.updateMess {
    font-size: 0.75rem;
    color: #f87171;
    width: 100%;
    text-align: left;
}

/* navBanner */
#navBanner {
    background: #ddf5ff;
    /* height: 40px; */
    width: 100%;
    padding: 4px 16px;
    padding-right: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 24px;

    p {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        color: #272d3c;
        display: flex;
        gap: 8px;
        align-items: center;
        padding: 2px 0;
    }

    p.updateMess {
        font-size: 0.75rem;
        color: #f87171;
        width: fit-content;
        text-align: left;
    }

    span {
        font-size: 0.75rem;
        width: fit-content;
        text-align: left;
        color: #4caf50 !important;
    }

    button {
        cursor: pointer;
        background: #007aff !important;
        border-radius: 4px;
        padding: 6px 12px;
        font-size: 12px;
        font-weight: 400;
        line-height: 18px;
        color: #fff;
        border: unset;
        outline: unset;
    }

    .cross {
        position: absolute;
        right: 16px;
        top: 7px;
        margin-left: auto;
        cursor: pointer;
    }
}

#navBanner button:hover {
    background-color: #0057ef;
}

@media screen and (max-width: 768px) {
    .section__header p {
        font-size: 18px !important;
    }
}

@media (max-width: 992px) {
    .nav {
        padding: 1rem 0;
    }

    .nav > .nav-btn {
        display: inline-block;
        position: absolute;
        right: 0;
        top: 0;
        padding-top: 0.2rem;
    }

    .nav > .nav-btn > label.nav-check {
        display: inline-block;
        width: 50px;
        height: 50px;
        padding: 1rem;
        margin-top: 2px;
    }

    .nav > .nav-btn > label > span {
        display: block;
        width: 20px;
        height: 10px;
        border-top: 2px solid #fff;
    }

    .nav > .nav-list {
        position: absolute;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        background-color: #020817;
        height: 0;
        transition: all 0.3s ease-in;
        top: 64px;
        left: 0;
        overflow: hidden;
        padding: 0 1rem;
        z-index: 999;
    }

    .nav > .nav-pre {
        display: none;
    }

    .nav > .nav-list > li a.pre-btn {
        display: flex;
    }

    .nav > .nav-list > li {
        /* width: 100%; */
        /* display: inline-flex; */
    }

    .nav > .nav-list > li a {
        /* width: 180px; */
        font-size: 18px;
        padding: 6px 14px !important;
    }

    .nav > #nav-check:checked ~ .nav-list {
        height: calc(100vh - 100px);
        justify-content: flex-start;
    }

    .account-dropdown {
        top: 30px;
        left: 0;
    }
    .account-dropdown > li {
        word-break: break-word;
    }
}

/* navbar end */
/* footer */

footer {
    background-color: var(--color-darkblue);
    color: white;
    padding-top: 60px;
    padding-bottom: 60px;
}

footer .container {
    max-width: 1280px;
    margin: 0px auto;
    padding: 0 16px;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

footer .footer__subtitle {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}

footer h3 {
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
}

footer a.contact {
    font-size: 22px !important;
    font-weight: 700 !important;
    line-height: 35px !important;
    margin-bottom: 15px !important;
    padding: 0 !important;
    color: #fff !important;
}

footer a.contact:hover {
    opacity: 0.7;
}

footer a {
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}

footer a:hover {
    color: #fff !important;
}

footer a.logo-container:hover {
    opacity: 1;
}

.footer__links {
    display: flex;
    width: 100%;
    margin-bottom: 24px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer__links > div {
    display: flex;
    flex-direction: column;
    max-width: 340px;
}

.footer__links > div a {
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: #ffffffb2;
    /* padding: 8px 0; */
}

.footer__icons {
    display: flex !important;
    flex-direction: row !important;
    width: fit-content;
    height: fit-content;
    align-items: center;
    gap: 30px;
    border-radius: 5px;
}

.footer__icons a {
    background-color: var(--color-blue);
    width: 50px;
    height: 50px;
    border-radius: 5px;
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

.footer__icons a img {
    height: 30px;
}

.footer__links .main_logo {
    height: 35px !important;
    width: 175px !important;
    max-width: 100%;
}

.copy__right {
    text-align: center;
    color: white !important;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

.footer_contact_2 {
    display: flex;
    flex-direction: column;
}

.footer_contact_2 a.contact {
    font-size: 18px !important;
    margin-bottom: 0px !important;
}

.footer_contact_1 {
    display: none;
}

.footer_para {
    color: #ffffffb2 !important;
    line-height: 23px;
    font-size: 14px;
}

.feedback_img {
    width: 48px;
    height: 40px;
    filter: grayscale(100%) brightness(0.9);
    cursor: pointer;
    transition: all 0.25s ease;
    transform: scale(1);
    opacity: 0.85;
}

.feedback_img.active {
    filter: none;
    transform: scale(1.15);
    opacity: 1;
}
.feedback_img:hover {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
    opacity: 1;
}
.feedback_img.active {
    animation: feedbackPop 0.25s ease;
}
@keyframes feedbackPop {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.25);
    }
    100% {
        transform: scale(1.15);
    }
}

@media only screen and (max-width: 992px) {
    .footer__links {
        gap: 50px;
    }
}

@media only screen and (max-width: 450px) {
    .alert-container {
        width: 80vw !important;
        max-width: 350px !important;
        min-width: 250px !important;
    }

    .footer__links > div {
        min-width: 150px;
    }

    .footer__icons {
        gap: 27px;
    }

    .footer_contact_resource_col {
        display: flex !important;
        flex-direction: row !important;
        gap: 45px !important;
        /* width: 100% !important; */
    }

    .footer_contact_1 {
        display: flex !important;
        flex-direction: column !important;
    }
    .footer_contact_1 a.contact {
        font-size: 18px !important;
        margin-bottom: 0px !important;
    }
    .footer_contact_1 a.email {
        padding: 0px !important;
    }

    .footer_contact_2 {
        display: none !important;
    }

    .container-fluid {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .paraphrase__section {
        padding: 8px !important;
    }

    .feedback_submited_container > div > p {
        font-size: 12px !important;
    }
}
#feedback__textarea {
    width: 100% !important;
}
.feedback__div:nth-child(2) {
    width: 100% !important;
    justify-content: center !important;
}

/* footer end */
/* ads_section */
.ads_section {
    width: 85vw;
    max-width: 1280px;
    width: 100%;
    margin: auto;
    text-align: center;
    margin-top: 20px;
    display: flex;
    flex-direction: column;

    > div {
        width: fit-content;
        margin: auto;
    }
}

.ads_section::before {
    content: "advertisement";
    font-size: 12px !important;
    text-transform: uppercase;
    opacity: 0.5;
}

.ads_h90 {
    min-height: 120px;
}

.ads_h250 {
    min-height: 320px;
}

/* ads_section end */
/* custom css */
.btn-sm {
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 18px !important;
    min-height: 30px !important;
    padding: 6px 12px 6px 12px !important;
    margin: unset !important;
    border-radius: 4px !important;
    border: 1px solid transparent;
    text-align: center;
}

.btn-blue {
    background: #007aff !important;
    color: #fff !important;
}

.btn-blue:hover {
    background: #0057ef !important;
}

.btn-outline-white {
    background: #eeeff2 !important;
    color: #272d3c !important;
    border-color: #e2e2e2 !important;
}

.btn-outline-white:hover {
    background: #fbfbfd !important;
}

label {
    position: relative;
}

.hideEye {
    position: absolute;
    bottom: 10px;
    right: 10px;
    cursor: pointer;
}

.pr-8 {
    padding-right: 32px !important;
}

.text-error {
    width: 100% !important;
    font-size: 0.75rem !important;
    color: #f87171 !important;
    text-align: left !important;
    position: relative !important;
    right: 0 !important;
}
.text-success {
    width: 100% !important;
    font-size: 0.75rem !important;
    color: #4caf50 !important;
    text-align: left !important;
    position: relative !important;
    right: 0 !important;
}
.hidden {
    display: none;
}

#form-error-message {
    position: unset;
}
#form-error-message {
    color: #f87171 !important;
    font-size: 0.75rem !important;
}

.border-red-400 a,
.border-red-400 {
    border-color: #f87171 !important;
}

.text-gray-light {
    color: #879192;
}

.text-14px {
    font-size: 14px;
}

.read {
    color: #879192;
}

.container-fluid {
    max-width: 1280px;
    width: 100%;
    padding-left: var(--sec-p);
    padding-right: var(--sec-p);
    margin-left: auto;
    margin-right: auto;
}

/* tools placeholder */
.input_area[data-placeholder]:empty::before {
    content: attr(data-placeholder);
    font-family: Roboto;
    font-size: 16px;
    font-weight: 400;
    line-height: 28px;
    color: #9b9faa;
    pointer-events: none;
    display: block;
}

.input_area[data-placeholder]::before {
    content: none;
}

/* custom css end */

/* page css */

.new-tool {
    background: linear-gradient(to bottom, #ffa000, #be0003);
    box-shadow: 0 1.5px 2.5px 0 #00000029;
    color: #fff;
    font-size: 7px;
    border-radius: 20px;
    padding: 2px 5px;
    font-weight: 600;
    height: 14.5px;
    width: 26.5px;
    display: flex;
    justify-content: center;
    align-items: center;
}
