* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: unset;
    text-decoration: none;
}
a {
    color: black;
}
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}
html {
    height: 100%;
}
:root {
    --red-color: #ef5858;
    --darkgray-color: #3e4754;
    --yellow-color: #fae794;
    --lightgray-border: #c0cbda;
    --text-color: #3c4854;
    --lightblue-color: #ecedf4;
    --font-size-default: 18px;
    --font-size-small: 16px;
    --font-size-xsmall: 14px;
    --font-size-h1: 40px;
    --font-size-h2: 34px;
    --font-size-h3: 28px;
    --font-size-h4: 24px;
    --font-size-h5: 22px;
    --font-size-xl: 60px;
    --border-radius-large: 12px;
    --border-radius-default: 7px;
    --fontweight-light: 300;
    --fontweight-regular: 500;
    --fontweight-semibold: 600;
    --fontweight-bold: 700;
    --fontweight-black: 900;
    --border-default: 1.8px;
    --border-color: lightgray;
    --border-type: solid;
    --gray-boxshadow: 15px 20px 30px rgba(43, 49, 58, 0.397);
    --yellow-boxshadow: 23px 23px 32px -14px rgba(250, 231, 148, 0.83);
    --red-boxshadow: 18px 20px 22px -5px rgba(239, 88, 88, 0.35);
}
h1 {
    font-size: var(--font-size-h1);
}
h2 {
    font-size: var(--font-size-h2);
}
h3 {
    font-size: var(--font-size-h3);
}
h4 {
    font-size: var(--font-size-h4);
}
h5 {
    font-size: var(--font-size-h5);
}
p,
a,
textarea {
    font-size: var(--font-size-default);
    line-height: 1.5 !important;
}
h1,
h2,
h3,
h4,
h5,
p,
a {
    color: var(--text-color);
}
.primary__btn {
    padding: 8px 32px;
    background-color: var(--darkgray-color);
    border-radius: 25px;
    border: 2px solid white;
    color: white;
    font-size: var(--font-size-default);
    cursor: pointer;
}
.container {
    width: 90%;
    margin: auto;
    max-width: 1280px;
    margin-top: 30px;
}
.formula__radio__btn {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 20px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
[type='radio']:checked,
[type='radio']:not(:checked) {
    display: none;
}
[type='radio']:checked + label,
[type='radio']:not(:checked) + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: block;
    color: #666;
}
[type='radio']:checked + label:before,
[type='radio']:not(:checked) + label:before,
[type='radio'] + label.markThisWord.active:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 8px;
    height: 8px;
    border: 4px solid var(--red-color);
    border-radius: 100%;
    background: #fff;
}
[type='radio']:not(:checked) + label:before {
    border: 4px solid #ddd;
    background: white;
    width: 8px;
    height: 8px;
}
[type='radio']:not(:checked) + label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: white;
    position: absolute;
    top: 4px;
    left: 4px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type='radio']:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
nav {
    display: flex;
    justify-content: space-between;
    min-height: 72px;
    align-items: center;
    margin-top: 0 !important;
}
nav div:nth-child(1) {
    flex: 1;
}
nav .nav__links {
    flex: 1.5;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
nav .nav__links div:nth-child(1) a {
    transition: 0.3s ease;
    border-bottom: 2px solid transparent;
    font-size: 20px;
}
nav .nav__links div:nth-child(1) .active,
nav .nav__links div:nth-child(1) a:hover {
    color: var(--red-color);
    border-color: var(--red-color);
}
.nav__logo {
    display: flex;
}
.nav__logo img {
    max-width: 180px;
}
.nav_btn_space {
    display: flex;
    justify-content: space-between;
    gap: 25px;
}
.nav__links div:nth-child(1) {
    display: flex;
    gap: 50px !important;
    align-items: center;
    width: fit-content;
}
.nav__links .primary__btn {
    border-top: 0;
    border-left: 0;
}
.nav__logo_text {
    color: var(--text-color);
    font-weight: 900;
    text-transform: uppercase;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.1;
}
.menu__icon {
    display: none;
    position: absolute;
    right: 20px;
}
nav.container.nav__bar {
    position: relative;
}
.menu__icon img {
    width: 100%;
    max-width: 30px;
    cursor: pointer;
    transition: 0.3s ease;
}
.menu__icon img:hover {
    transform: scale(1.02);
}
.tool__div {
    display: flex;
    margin-top: 15px;
}
.tool__topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tool__topbar div {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid transparent;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}
.tool__topbar div img:nth-child(1) {
    padding: 2px;
    border: 1px solid lightgray;
    border-radius: 50%;
}
.tool__topbar div:hover {
    border-color: lightgray;
}
.tool__body {
    min-height: 400px;
    height: 50vh;
    position: relative;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='20' ry='20' stroke='lightgray' stroke-width='3' stroke-dasharray='6%2c 14' stroke-dashoffset='5' stroke-linecap='square'/%3e%3c/svg%3e");
    padding: 2px;
    box-shadow: 0 3px 10px rgb(0 0 0 / 35%);
    border-radius: 21px;
}
#checktext_tbl {
    width: 100% !important;
}
.tool__body textarea {
    width: 100%;
    margin: auto !important;
    height: 100%;
    resize: none;
    border: none;
    padding: 15px 20px;
    color: var(--text-color);
    border-radius: 16px;
    padding-bottom: 72px;
}
.textarea__options {
    display: flex;
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #c3ced0 !important;
    gap: 10px;
    flex-wrap: wrap;
    width: 80%;
    justify-content: center;
}
.textarea__options * {
    color: #c3ced0 !important;
}
.textarea__options > div,
.textarea__options > label {
    width: 150px;
    height: 110px;
    border: 1px solid var(--border-color);
    /* min-height: 115px; */
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    padding: 10px;
}
.textarea__options > div img ,
#drop__txt__file img,
#upload__txt__file img
{
    transition: 0.3s ease;
    max-width: 30px;
    height:30px;
}
.textarea__options > div p {
    font-size: var(--font-size-small);
}
.textarea__options > div:hover img,
#drop__txt__file:hover img,
#upload__txt__file:hover img

{
    transform: translateY(-3px);
}
.tool__bottombar {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 96%;
    bottom: 0;
    padding: 6px 0;
    left: 20px;
    background: #fff;
    min-height: 84px;
}
.tool__bottombar > div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex: 1;
}
.tool__bottombar > div:first-child {
    padding-left: 10px;
    justify-content: start;
}
.tool__bottombar > div:last-child {
    justify-content: end;
}
.tool__bottombar > #captcha {
    justify-content: end;
}
.tool__bottombar > div > img {
    width: 30px;
}
.tool__bottombar > div > p {
    font-size: var(--font-size-small);
    color: gray;
}
.tool__bottombar > div .primary__btn {
    background-color: var(--yellow-color);
    color: var(--text-color);
    box-shadow: var(--yellow-boxshadow) !important;
}
.tool__result {
    display: none;
}
.tool__result > div {
    margin: 0;
    width: 100%;
    gap: 12px;
}
.tool__result .tool__body textarea {
    text-align: left;
    white-space: wrap;
    line-height: 1.8;
}
.tool__result .tool__bottombar .primary__btn {
    box-shadow: var(--red-boxshadow) !important;
    background-color: var(--red-color);
    color: white !important;
}
.tool__result .tool__bottombar .txt_options {
    display: flex;
    min-width: 220px;
    padding: 8px 0;
    border-radius: 25px;
    justify-content: space-around;
}
.tool__result .tool__bottombar .txt_options button {
    cursor: pointer;
    border: none;
    background: none;
}
.tool__result .tool__bottombar .txt_options button:hover img {
    transform: scale(1.1);
}
.tool__result .tool__bottombar .txt_options button img {
    transition: 0.3s ease;
    width: 85%;
}
.copy-message {
    color: white;
    background-color: #3e4754;
    padding: 5px 17px;
    border-radius: 5px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.5s ease;
    margin-bottom: -17px !important;
    width: 12%;
    margin-left: 83%;
}
.mistake__bar {
    min-height: 400px;
    height: 50vh;
    align-self: center;
    min-width: 300px;
    width: 300px;
}
.mistake__bar > button {
    background-color: var(--lightblue-color);
    font-size: var(--font-size-default);
    width: 100%;
    padding: 10px 0;
    border-radius: 25px;
    position: relative;
    font-weight: 300;
    letter-spacing: 1.2px;
    color: var(--text-color);
    border: none;
}
.mistake__bar > button span {
    left: 8px;
    font-size: 16px;
    position: absolute;
    background-color: var(--red-color);
    color: white;
    top: 50%;
    transform: translateY(-50%);
    padding: 4px 8px;
    font-size: 14px;
    border-radius: 18px;
}
.tool__div.tool__blank > form {
    width: 100%;
}
.mistake__info__div {
    width: 96%;
    margin: auto;
    max-height: 350px;
    margin-top: 10px;
    border-radius: var(--border-radius-default);
    background-color: white;
    box-shadow: rgba(100, 100, 111, 0.2) 0 7px 29px 0;
    display: flex;
    flex-direction: column;
    padding: 10px;
    padding-left: 20px;
    overflow: hidden;
    overflow-y: auto;
}
::-webkit-scrollbar {
    width: 7px;
}
::-webkit-scrollbar-track {
    background: var(--lightblue-color);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb {
    background: var(--red-color);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: darkpink;
}
.mistake__info__div > div:nth-child(1) {
    font-size: var(--font-size-small);
    align-self: flex-end;
    display: flex;
    gap: 15px;
    padding-right: 5px;
}
.mistake__info__div > div:nth-child(1) img {
    width: 12px;
    cursor: pointer;
    transition: 0.3s ease;
}
.mistake__info__div > div:nth-child(1) img:hover {
    transform: scale(1.1);
}
.mistake__sugestion__div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}
.mistake__sugestion__div > div:first-child {
    padding-top: 0;
}
.mistake__sugestion__div > div:last-child {
    border-bottom: 0;
}
.mistake__sugestion {
    display: flex;
    justify-content: space-around;
    border-bottom: 1px solid var(--lightblue-color);
    align-items: center;
    padding-bottom: 12px;
}
.mistake__sugestion * {
    font-size: var(--font-size-small);
    color: var(--text-color);
}
.mistake__sugestion > div:nth-child(1) {
    display: flex;
    flex-direction: column;
    gap: 3px !important;
    min-width: 50%;
    max-width: auto;
    width: auto;
}
.mistake__sugestion > div:nth-child(1) > div {
    display: flex;
    align-items: center;
    gap: 10px;
}
.mistake__sugestion > div:nth-child(1) > div > div {
    width: 8px;
    height: 8px;
    background-color: var(--red-color);
    clip-path: circle();
}
.mistake__sugestion > div:nth-child(1) > div > p {
    font-size: var(--font-size-default);
}
.mistake__sugestion > div:nth-child(1) > p:last-child > span:hover,
.mistake__sugestion > div:nth-child(1) > p:last-child > span.active {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
}
.mistake__sugestion > div:nth-child(1) > p:last-child > span {
    display: block;
}
.mistake__sugestion > div:nth-child(1) > p:nth-child(2) {
    color: #c3ced0;
    font-size: var(--font-size-xsmall);
    width: fit-content;
}
.mistake__sugestion > div:nth-child(1) > p:last-child {
    width: 100%;
    max-width: 120px;
    background-color: var(--lightblue-color);
    padding: 5px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
}
.details__section {
    width: 100vw;
    height: fit-content;
    position: relative;
    margin-top: 90px;
}
.details__section > div {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 10px 0;
    position: relative;
}
.details__section > div > div {
    width: 90%;
    margin: auto;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 0 0;
}
.details__section > div > div > * {
    margin: 10px;
}
.details__section > div > div > p {
    max-width: 90%;
    line-height: 1.5;
    margin-left: auto;
    margin-right: auto;
}
.details__section__dashedbar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    bottom: -1%;
    z-index: 5;
    padding: 0;
    height: 100%;
    width: 2px;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100' height='100' fill='none' rx='5' ry='16' stroke='lightgray' stroke-width='5' stroke-dasharray='8 14' stroke-dashoffset='25' stroke-linecap='square'/%3e%3c/svg%3e");
}
.content_heading {
    font-size: var(--font-size-h1);
    padding-top: 8px;
}
.faq .answer ol {
    padding-left: 20px;
}
.faq .answer ol li {
    margin-bottom: 10px;
}
.faq {
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 0;
    border-bottom: thin dotted #d4d4d4;
    width: 70%;
    margin: 20px auto;
}
.faq .question {
    cursor: pointer;
    font-size: 22px;
    position: relative;
}
.faq .question::after {
    content: '+';
    display: inline-block;
    position: absolute;
    right: 0;
    font-size: 20px;
    color: #999;
    transition: transform 0.2s ease;
}
.faq .question.active::after {
    transform: rotate(45deg);
}
.faq .answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.1s ease;
    padding-top: 17px;
    padding-left: 10px;
    line-height: 26px;
    color: #666;
    font-size: 18px;
}
.why__we__points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.why__we__points > * {
    margin: 10px 0;
}
.why__we__points > div {
    display: flex;
    align-items: center;
    gap: 20px;
}
.why__we__points > div > div {
    width: 18px;
    height: 18px;
    border: 4px solid var(--yellow-color);
    border-radius: 50%;
}
.using__info > div > img {
    width: 80%;
}
.using__info > div:nth-child(2) > div {
    display: grid;
    grid-template-columns: 1fr 5fr;
    place-items: center;
    margin: 15px 0;
}
.using__info > div:nth-child(2) > div > div {
    width: 70px;
    height: 70px;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='lightgray' stroke-width='3' stroke-dasharray='6%2c 14' stroke-dashoffset='25' stroke-linecap='square'/%3e%3c/svg%3e");
    border-radius: 5px;
    display: grid;
    place-items: center;
    font-size: var(--font-size-h1);
    font-weight: var(--fontweight-black);
    color: var(--red-color);
}
.using__info > div:nth-child(2) > div > p {
    width: 90%;
}
.tool__features__types > div {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin: 20px 0;
}
.tool__features__types > div > div > h4 {
    margin-top: 0;
}
.tool__features__types > div > div > * {
    margin: 10px;
    max-width: 90%;
}
.tool__features__types > div > img {
    max-width: 35px;
}
.tool__features > div > img {
    width: 600px;
    margin: auto;
}
.tool__blogs .blogs__images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}
.tool__blogs .blogs__images a {
    width: fit-content;
    overflow: hidden;
    border-radius: var(--border-radius-default);
}
.tool__blogs .blogs__images a:hover img {
    transform: scale(1.03);
}
.tool__blogs .blogs__images a img {
    width: 100%;
    transition: 0.3s ease;
}
.tool__blog__content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex-grow: 1;
    height: 150px;
}
.tool__blog__content > * {
    width: fit-content;
}
.tool__blog__card {
    display: flex;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='5' ry='5' stroke='lightgray' stroke-width='3' stroke-dasharray='6%2c 14' stroke-dashoffset='25' stroke-linecap='square'/%3e%3c/svg%3e");
    padding: 8px !important;
    align-items: center;
    gap: 20px;
    width: calc(50% - 10px);
}
.tool__blog__content > div:nth-child(1) {
    display: flex;
    gap: 20px;
}
.tool__blog__content > div:nth-child(1) p:first-child {
    background-color: var(--yellow-color);
    padding: 0 10px;
    border-radius: 4px;
}
.tool__blog__content h5 {
    font-size: 20px;
}
.tool__blog__content p {
    font-size: 16px !important;
    line-height: 1.5 !important;
    font-weight: 300;
}
.tool__blog__card button {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--red-color);
    padding: 5px 10px;
    border: 1px dotted;
}
.tool__blog__card:hover button img {
    transform: translateX(5px);
}
.tool__blog__card button img {
    transition: 0.3s ease;
    width: 12px;
}
.notfound__404 {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: fit-content !important;
    min-height: fit-content !important;
}
.notfound__404 > * {
    margin: 10px 0;
    text-align: center;
}
.notfound__404 h1 {
    font-size: 16rem;
    display: flex;
    margin: auto;
    text-align: center;
    font-weight: 300;
    line-height: 1;
}
.notfound__404 h1 span:nth-child(1) {
    color: var(--red-color);
}
.notfound__404 h1 span:nth-child(3) {
    color: #eccf4b;
}
.notfound__404 > p {
    color: #c3ced0;
}
.notfound__404 a {
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    box-shadow: var(--red-boxshadow);
    background-color: var(--red-color);
}
.notfound__404 .reload__div {
    margin-top: 60px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.notfound__404 .reload__div div:nth-child(1),
.notfound__404 .reload__div div:nth-child(3) {
    width: 43%;
    height: 2px;
    margin-top: 10px;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='50' ry='50' stroke='lightgray' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='25' stroke-linecap='square'/%3e%3c/svg%3e");
    margin-bottom: 10px !important;
}
.notfound__404 .reload__div div:nth-child(1) {
    margin-right: auto;
}
.notfound__404 .reload__div div:nth-child(3) {
    margin-left: auto;
}
.blogs__hero {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}
.blogs__hero h1 {
    text-align: center;
}
.blogs__top__filter {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.blogs__top__filter a {
    background-color: transparent;
    border: 1.5px solid var(--darkgray-color);
    color: var(--darkgray-color);
    transition: 0.3s ease;
}
.blogs__top__filter a.active,
.blogs__top__filter a:hover {
    background-color: var(--red-color);
    box-shadow: var(--red-boxshadow);
    color: white;
    border: 1.5px solid white !important;
}
.blogs__hero > p {
    max-width: 700px;
    text-align: center;
}
.blogs__images__card {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 10px;
}
.blogs__images__card a {
    overflow: hidden;
    border-radius: var(--border-radius-default);
}
.blogs__images__card a img {
    transition: 0.5s ease;
    width: 200px;
    height: 100%;
    max-height: 200px;
    object-fit: cover !important;
    object-position: center;
}
.blogs__images__card a:hover img {
    transform: scale(1.03) translateY(-2px);
}
.blogs__page {
    margin-top: 0;
}
.blogs__page h1 {
    text-align: center;
    margin-bottom: 20px;
}
.blogs__page .tool__blog__cards {
    display: flex;
    /* flex-direction: column; */
    flex-wrap:wrap;
    gap: 20px;
}
.blogs__page .tool__blog__cards > a {
    padding: 15px !important;
    border-radius: var(--border-radius-default);
    position: relative;
}
.blogs__page .tool__blog__cards .tool__blog__content div:nth-child(1) {
    width: 100%;
    justify-content: space-between;
}
.blogs__page .tool__blog__cards > a button {
    margin: auto 0 10px auto;
}
.single__blog {
    max-width: 800px;
}
.single__blog > h2 {
    margin-bottom: 0;
}
.blog__info {
    display: flex;
    gap: 20px;
    margin: 5px 0 !important;
}
.blog__info p {
    font-weight: 400 !important;
    margin: 5px 0 !important;
}
.blog__info p:nth-child(1) {
    background-color: var(--yellow-color);
    padding: 2px 10px;
}
.single__blog * {
    margin: 15px 0;
}
.single__blog p {
    font-weight: 400;
    font-size: 18px;
    line-height: 1.7 !important;
}
.single__blog div img {
    width: 100%;
}
.contact__us {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
    max-width: 650px;
}
.contact__us p {
    max-width: 500px;
}
.contact__us form {
    width: inherit;
}
.contact__us form > div {
    width: 100%;
    display: flex;
    gap: 20px;
    flex-direction: column;
}
.contact__us form > div > div {
    width: 100%;
    display: flex;
    align-items: center;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='6' ry='6' stroke='lightgray' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='25' stroke-linecap='square'/%3e%3c/svg%3e");
    border-radius: 6px;
    min-height: 60px;
    padding: 10px;
}
.contact__us form > div > div img {
    filter: brightness(0) saturate(100%) invert(88%) sepia(8%) saturate(226%)
        hue-rotate(141deg) brightness(96%) contrast(85%);
}
.contact__us form > div > div:hover .active,
.contact__us form > div > div:hover img {
    filter: brightness(0) saturate(100%) invert(73%) sepia(64%) saturate(6214%)
        hue-rotate(327deg) brightness(96%) contrast(94%);
}
.contact__us form > div > div:last-child {
    align-items: flex-start;
}
.contact__us form > div > div:last-child img {
    margin-top: 15px;
}
.contact__us form > div > div > input,
.contact__us form > div > div > textarea {
    width: 100%;
    border: none;
    height: 100%;
    padding: 10px;
    font-size: var(--font-size-default);
    color: var(--darkgray-color);
    resize: none;
}
.contact__us form > div > div > input::placeholder,
.contact__us form > div > div > textarea::placeholder {
    color: #c3ced0;
}
.contact__us button {
    background-color: var(--red-color);
    box-shadow: var(--red-boxshadow);
}
footer {
    margin-top: 40px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
}
footer * {
    text-align: center;
}
footer > * {
    margin: 7px 0;
}
footer > p {
    max-width: 780px;
    text-align: center;
}
footer > a > img {
    margin-top: 40px !important;
    z-index: 12;
    min-width: 320px;
}
.footer__social__links {
    display: flex;
    align-items: center;
    gap: 40px;
}
.footer__social__links a {
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='50' ry='50' stroke='lightgray' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='25' stroke-linecap='square'/%3e%3c/svg%3e");
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.footer__social__links a img {
    transition: 0.3s ease;
}
.footer__social__links a:hover img {
    transform: scale(1.1) translateY(-1px);
}
.footer__links {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 500px;
    flex-wrap: wrap;
    font-weight: 500;
}
.footer__links a {
    font-size: 20px;
}
.footer__divider {
    width: 100%;
    height: 2px;
    background-image: url("data:image/svg+xml,%3csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3e%3crect width='100%25' height='100%25' fill='none' rx='50' ry='50' stroke='lightgray' stroke-width='4' stroke-dasharray='6%2c 14' stroke-dashoffset='25' stroke-linecap='square'/%3e%3c/svg%3e");
    margin-bottom: 10px !important;
}
.copy__right {
    margin-top: 20px !important;
    margin-bottom: 20px;
}
.alert__msg {
    position: fixed;
    top: 15px;
    right: 30px;
    background-color: white;
    padding: 8px 20px;
    box-shadow: 5px 5px 40px -15px gray;
    border: 1px solid whitesmoke;
    display: flex;
    width: fit-content;
    min-width: 250px;
    max-width: 320px;
    min-height: 50px;
    gap: 5px;
    border-left: 5px solid var(--red-color);
    border-right: 5px solid var(--red-color);
    border-radius: 5px;
    text-align: center;
    justify-content: center;
    z-index: 100;
    align-items: center;
}
@media only screen and (max-width: 1024px) {
    .tool__result {
        display: flex;
        flex-direction: column;
    }
    .tool__div {
        display: flex;
        flex-direction: column;
    }
    .details__section__dashedbar {
        display: none;
    }
    .mistake__bar {
        margin-top: 0 !important;
        width: 100% !important;
    }
    .details__section {
        margin-top: 50px;
    }
    .details__section > div {
        grid-template-columns: repeat(1, 1fr);
        margin: auto;
        padding: 10px 0;
    }
    footer {
        margin-top: 0 !important;
    }
    .tool__bottombars {
        width: 100% !important;
        left: 0 !important;
    }
}
@media only screen and (max-width: 338px) {
    .tool__bottombar {
        bottom: -16px !important;
    }
}
@media only screen and (max-width: 384px) {
    .tool__bottombar {
        width: 100%;
    }
}
@media only screen and (max-width: 305px) {
    .primary__btn {
        font-size: 12px !important;
    }
}
@media only screen and (max-width: 1237px) {
    .tool__result {
        display: flex;
        flex-direction: column;
    }
}
@media only screen and (max-width: 768px) {
    .nav_btn_space {
        flex-direction: column;
        margin: 0 0 26px 250px;
    }
    nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-top: 20px !important;
    }
    nav .nav__links {
        flex-direction: column;
        display: none;
    }
    .nav__links div:nth-child(1) {
        display: flex;
        flex-direction: column;
        gap: 30px !important;
        margin-bottom: 10px;
    }
    .menu__icon {
        display: block;
    }
    .textarea__options {
        width: 90%;
        flex-wrap: nowrap;
        gap: 20px;
    }
    #reset__tool {
        padding: 10px !important;
    }
    .textarea__options > div,
    .textarea__options > label {
        width: 150px;
        height: 100px !important;
        min-height: auto;
        border-radius: var(--border-radius-default);
        padding: 40px 0 !important;
    }
    .textarea__options > label img,
    .textarea__options > div img {
        width: 30px;
    }
    .tool__bottombar {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: space-between;
        left: 0;
    }
    .blogs__top__filter {
        justify-content: center;
    }
    .blogs__images__card {
        grid-template-columns: repeat(2, 1fr);
    }
    .tool__blog__card {
        flex-direction: column;
        max-width: 450px;
        margin: auto !important;
    }
    .tool__blog__card > div {
        width: 100% !important;
        height: 100%;
    }
    .tool__blog__card > div > img {
        width: 100%;
        max-height: 250px;
        object-fit: cover;
        border-radius: var(--border-radius-default);
    }
    .notfound__404 h1 {
        font-size: 12rem;
    }
    #checktext {
        min-width: 100%;
    }
}
@media only screen and (max-width: 674px) {
    #reset__tool {
        font-size: 14px;
        text-align: center;
    }
    .tool__bottombar {
        gap: 7px;
        flex-wrap: unset;
        border-radius: 21px;
    }
    .red-info-icon-img {
        display: none;
    }
    .tool__body {
        min-height: 500px;
    }
}
@media only screen and (max-width: 632px) {
    .nav_btn_space {
        flex-direction: column;
        margin: 0 0 26px 200px;
    }
    .tool__features > div > img {
        width: 450px;
        margin: auto;
    }
}
@media only screen and (max-width: 530px) {
    .tool__blog__card{width: 100%;}
    .nav_btn_space {
        flex-direction: column;
        margin: 0 0 26px 130px;
    }
}
@media only screen and (max-width: 450px) {
    .tool__div {
        margin-top: 20px;
    }
    .nav_btn_space {
        flex-direction: column;
        margin: 0 0 26px 90px;
    }
    .tool__features > div > img {
        width: 350px;
        margin: auto;
    }
    .textarea__options {
        width: 90%;
        flex-direction: column;
        align-items: center;
    }
    .textarea__options label img,
    .textarea__options div img {
        width: 20px;
    }
    .textarea__options label p,
    .textarea__options div p {
        font-size: var(--font-size-xsmall);
    }
    .tool__bottombar {
        flex-direction: column-reverse;
        bottom: 3px;
    }
    div#checktext {
        padding-bottom: 165px !important;
    }
    .primary__btn {
        font-size: 14px;
    }
    .tool__bottombar > div > p {
        font-size: 14px;
    }
    .tool__bottombar > div > img {
        width: 22px;
    }
    #check__grammer {
        padding: 10px;
    }
    .blogs__images__card {
        width: 100%;
        grid-template-columns: repeat(1, 1fr);
        grid-column-gap: 50px !important;
    }
    .blogs__images__card a img {
        width: 100%;
        max-height: 280px;
    }
    .notfound__404 h1 {
        font-size: 6rem;
    }
}
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 5px solid rgb(239, 88, 88);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.success {
    color: green !important;
}
.error {
    color: red !important;
    text-align: center;
}
.info-box {
    z-index: 5;
    position: absolute;
    width: 59%;
    min-width: 150px;
    max-width: 165px;
    padding: 10px;
    border-radius: 10px;
    background-color: white;
    display: none;
    height: 150px;
    overflow: auto;
}
.highlight {
    padding: 5px;
}
.TYPOS {
    background-color: #f5caca;
    text-decoration: solid underline #eb5757 3px;
    cursor: pointer;
}
.tooltip_main {
    display: flex;
    flex-direction: column;
    max-height: 220px;
    overflow: auto;
    position: absolute;
    min-width: 150px;
    max-width: 250px;
    height: auto;
    z-index: 6000;
    box-shadow: 0 5px 30px -10px #999;
    background: #fff;
    padding: 5px;
    white-space: nowrap !important;
    border-radius: 5px;
}
.tooltip_main hr {
    background-color: #3772fe;
    opacity: 43%;
}
.tooltip_main strong {
    font-size: 13px;
    color: #eb5757;
    white-space: break-spaces;
}
.tool-tip-ans {
    margin: 5px 0;
}
.tool-tip-ans::before {
    content: '.';
}
.tooltip_main p {
    font-size: 13px;
    line-height: 1;
    white-space: break-spaces;
    margin: 10px 0;
}
.tooltip_main b {
    font-weight: 0;
    font-size: 14px;
    cursor: pointer;
    padding: 4px;
    padding-right: 65%;
}
.tooltip_main b:hover {
    background-color: var(--color-light-mode-tool);
}
.tooltip_main::-webkit-scrollbar {
    width: 6px;
    background-color: #f5f5f5;
}
.tooltip_main::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #fff;
    background-image: -webkit-gradient(
        linear,
        40% 0%,
        75% 84%,
        from(var(--color-blue)),
        to(var(--color-blue)),
        color-stop(0.6, var(--color-blue))
    );
}
.tooltip_main > span {
    cursor: pointer;
    color: var(--color-blue);
    padding-right: 65%;
}
.tooltip_main > span:hover {
    background-color: var(--color-light-mode-tool);
    width: 100%;
}
.tooltip_main > .line {
    float: left;
    width: 140px;
    height: 20px;
    margin-top: 12px;
    background-image: linear-gradient(
        90deg,
        var(--color-blue) 0,
        rgba(229, 229, 229, 0.8) 40px,
        var(--color-blue) 80px
    );
    background-size: 600px;
    animation: shine-lines 2s infinite ease-out;
}
.tooltip_main .line {
    width: 100%;
}
.tooltip_main .line ~ .line {
    background-color: #ddd;
}
.loading-button {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #fae794;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: none;
}
div#checktext {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 100%;
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.tooltip {
    position: relative;
}
.tooltip .tooltip-text {
    display: none;
    position: absolute;
    padding: 2px 8px;
    background: #000;
    color: #fff;
    border-radius: 4px;
    top: -28px;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
}
.tooltip:hover .tooltip-text {
    display: inline-block;
}
.tooltip .tooltip-text::after {
    content: '';
    border: 4px solid transparent;
    position: absolute;
    border-top-color: #000;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}
.tool__body {
    width: 100%;
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
#popup-background-layer.hide {
    display: none;
}
#popup-background-layer {
    position: fixed;
    top: 0;
    left: 0;
    min-width: 100vw;
    min-height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fading 0.3s ease-in 1;
    -webkit-animation: fading 0.3s ease-in 1;
}
#popup-background-layer > div {
    min-width: min(350px, 90vw);
    width: min(350px, 90vw);
    min-height: 390px;
    height: 390px;
    background-color: white;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: center;
    padding-bottom: 35px;
    gap: 20px;
}
#popup-background-layer h4 {
    font-size: 20px;
    font-weight: 600;
}
#popup-background-layer p {
    text-align: center;
    width: 286px;
    font-size: 14px;
}
button#popup-close {
    border-radius: 18px;
    border: none;
    background: #ef5858;
    color: white;
    width: 180px;
    height: 40px;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    -webkit-border-radius: 18px;
    -moz-border-radius: 18px;
    -ms-border-radius: 18px;
    -o-border-radius: 18px;
    font-size: 16px;
}
#popup-container {
    position: relative;
}
#popup-container .popupimage {
    min-width: 158px;
    min-height: 130px;
}
#popup-container .popupimage img {
    width: 100%;
}
button#popup-close:hover {
    background: #fd5b5b;
    cursor: pointer;
}
span.popup-close-icon {
    position: absolute;
    top: 10px;
    right: 15px;
    cursor: pointer;
}
span.popup-close-icon::before {
    content: '\2715';
}
span.popup-close-icon:hover:before {
    color: red;
}
@keyframes fading {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
form {
    animation: fading 0.5s ease-in;
    -webkit-animation: fading 0.5s ease-in;
}
.hidden {
}
.visible,
.visible.hidden {
    opacity: 1 !important;
}
