.formWrapper {
    padding: 25px 24px 0px;
}

.paraphraserHead {
    color: #0F172A;
    font-size: 20px;
    font-weight: 600;
    padding: 15px 0;
    text-align: center;
}

.inputGroup textarea {
    min-height: 40vh;
    padding: 15px;
}

.formWrapper {
    height: 100%;
    overflow-x: unset;
    background: #fff;
    overflow-y: unset;
    min-height: calc(100vh - 335px);
}

#new-outputs,
#history-tab {
    height: 100%;
    overflow-y: unset;
    min-height: unset;
    position: unset;
}

.essayWriterBody {
    position: relative;
    border-radius: 0px 0px 6px 6px;
    background: #FFF;
    filter: drop-shadow(0px 0px 21px rgba(160, 160, 160, 0.25));
}

.essayWriterBodyWrapper {
    padding: 25px 0 20px;
    background: #F8FAFC;
}

.ewBtns {
    position: sticky;
    bottom: 0;
    background: #fff;
}

.textareaActionWrapper {
    position: absolute;
    display: flex;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    gap: 10px;
}

.textareaActionBtn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 89px;
    padding: 12px 0 11px;
    border-radius: 5px;
    border: 0.5px solid #05ada3;
}

.textareaActionBtn span {
    color: #05ada3;
    font-size: 10px;
    font-style: italic;
}

.textareaActionBtn:hover {
    background: #f2fff8;
}

.essayWriterInput,
.essayWriterOutput {
    background: #fff;
}

.languagesFilterWrapper {
    display: flex;
    z-index: 6;
    position: relative;
    max-width: max-content;
}

.languagesFilterWrapper a {
    padding: 11px 15px 10px 18px;
    color: #64748B;
    font-size: 14px;
    border-radius: 6px 6px 0px 0px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.languagesFilterWrapper a:hover{
    background: rgba(37, 37, 37, 0.08)
}

.languagesFilterWrapper a.active {
    background: #FFF;
    font-weight: 600;
}

#old-essays,
#new-essays {
    max-height: unset;
}

br {
    display: block;
}

.generatedEssay p {
    white-space: unset;
}

.sentenceJumperWrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    bottom: 0;
    min-height: 81px;
    padding: 22px 24px 17px;
    background: #fff;
    display: none;
}

.sentencesInner{
    display: flex;
    align-items: center;
    gap: 18px;
}

.sentenceJumperBtns {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sentenceJumperBtns a {
    padding: 7px 8px 9px;
    border-radius: 3px;
    max-height: 32px;
    background: #EDF0F4;
}

.sentenceJumperBtns a:hover {
    background: linear-gradient(180deg, #24C7BD 0%, #046761 100%);
}

.sentenceJumperBtns a:hover svg path {
    fill: #fff;
}

.outputInfoWrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.outputInfoWrapper * {
    color: #0F172A;
    font-size: 15px;
}

.singleWord.notexists {
    color: rgb(227, 107, 0);
}

.iconBtn:hover svg path {
    fill: #212121;
}

.newOutputs.withData:hover {
    background-color: #fff;
}

.inputGroup textarea {
    font-size: 16px;
    line-height: 150%;
}

.inputGroup textarea::placeholder {
    /* Adjust placeholder styles for better performance */
    color: #858585;
    font-size: 16px; /* Set the same font size as textarea for consistency */
}

/* .newOutputs.withData {
    display: none;
} */

.singleSentence.highlight {
    background: #EDFAFF;
}

#output-loader {
    position: absolute;
    left: 43%;
    top: 35%;
    transform: translate(-50%, -50%);
    display: none;
}

.lds-ellipsis div {
    position: absolute;
    top: 33px;
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #05ada3;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 8px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 8px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 32px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 56px;
    animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}
.essayWriterOutput{
    position: relative;
}
.skeleton{
    background-size: 200px 100%;
    background-repeat: no-repeat;
    line-height: 1;
    animation: SkeletonLoading 1s ease-in-out infinite;
    background-color: #fff;
    background-image: linear-gradient(90deg,#fff,#ddd8d8,#fff);
    min-height: 500px;
}
@keyframes SkeletonLoading{
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}
#generate-essay-processing-btn {
    height: 42px;
}
/* .iconBtn{
    border-radius: 5px;
    background: #F8F9FB;
}
.iconBtn svg path{
    fill:#212121
}
.iconBtn:hover svg path{
    fill: #DCE1E8
} */
.languageDropdownWrapper{
    position: absolute;
    display: flex;
    bottom: -240px;
    right: -328px;
    max-width: 400px;
    width: 100%;
    flex-wrap: wrap;
    filter: drop-shadow(0px 0px 21px rgba(160, 160, 160, 0.25));
    padding: 4px;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    display: none;
}
.languageDropdownWrapper.show{
    display: flex;
}
.dropdownOuterModes{
    position: relative;
}
.modesDropdownWrapper{
    position: absolute;
    display: flex;
    bottom: -278px;
    right: 0;
    max-width: 400px;
    width: 100%;
    flex-wrap: wrap;
    filter: drop-shadow(0px 0px 21px rgba(160, 160, 160, 0.25));
    padding: 4px;
    border-radius: 6px;
    overflow: hidden;
    background: #fff;
    /* display: none; */
}
.languageDropdownWrapper a{
    padding: 8px;
    width: 33%;
    background: #fff;
    border-radius: 6px;
    display: none;
}
.languageDropdownWrapper a:nth-child(n + 4){
    display: block;
}
#for-dropdown {
    display: none;    
}
.languagesFilterWrapper a > svg.flip{
    transform: rotate(180deg);
}
.languagesFilterWrapper .PortugueseMob{
    display: none;
}
.modesWrapper {
    display: flex;
    align-items: center;
    background: #fff;
    position: relative;
    z-index: 5;

}
.modesWrapper p, .modesWrapper a{
    padding: 13px 15px 12px;
}
.modesWrapper a{
    font-size: 14px;
    color: #64748B;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 4px 4px 0 0;
}
.modesWrapper a:hover{
    background: rgba(37, 37, 37, 0.08)
}
.modesWrapper a.active span{
    font-weight: 500;
}
.modesWrapper p{
    font-size: 16px;
    color: #212121;
    font-weight: 600;
}
.modesWrapper a.active{
    color: #05ada3;
    font-weight: 500;
    border-bottom: 2px solid #05ada3;

}
.modesWrapperMob{
    display: none;
    position: relative;
}
.backBtn{
    background: #FFFFFF;
    border: 1px solid #05ada3;
    border-radius: 8rem;
    outline: none; 
    max-width: 83px;
    width: 100%;
    height: 32px;
    font-style: normal;
    font-weight: 450;
    font-size: 14px;
    line-height: 18px;
    color: #05ada3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.backBtn:hover svg path{
    fill:#fff;
}
.backBtn:hover{
    background:#05ada3;
    color:#fff;
}
.paraphraserTop {
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #E2E8F0;
}
.paraDownSec{
    padding: 6px 0 30px;
    text-align: center;
    background: #fff;
}
.paraDownSec a:hover svg path{
    fill: #000;
}
.specsSec{
    padding: 110px 0 160px;
}
.flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.secHead{
    color: #000;
    font-size: 32px;
    font-weight: 700;
    line-height: 120.187%;
    text-align: center;
}
.secHead.lineHead{
    position: relative;
    padding-left: 15px;
    text-align: left;
}
.secHead.lineHead::before{
    position: absolute;
    content: '';
    width: 3px;
    height: 100%;
    background: #05ADA3;
    left: 0;
}
.specsContent{
    max-width: 600px;
}
.contentWrapper p{
    color: #3F3F3F;
font-size: 14px;
line-height: 155.187%;
}
.specsContent p{
    margin-top: 14px;
}
.specsContent h2{
    margin-bottom: 40px;
}
.tableWrapper{
    position: relative;    
}
.tableWrapper::before{
    position: absolute;
    content: '';
    width: 275px;
    height: 275px;
    background: url(../svg/table-bg.svg);
    background-size: cover;
    left: -26px;
    top: -66px;
    z-index: -1;
}
.tableWrapper.tableCol{
    max-width: 515px;
    width:100%;
}
.tableOuter{
    border: 1px solid #E2E8F0;
    border-radius: 5px;
    overflow: hidden;
}
table.modesTable {
    border-collapse: collapse;
}
table.modesTable td {
    border: 1px solid #E2E8F0;
    padding: 13px 15px;
    color: #0F172A;
    font-size: 14px;
    font-weight: 400;
    background: #FFF;
}
table.modesTable td span{
    transform: translateX(-2px);
}
table.modesTable tr td:first-child{
    border-top: none;
    border-left: none;
}
table.modesTable tr td:last-child{
    border-top: none;
    border-right: none;
}
.functionsSec{
    padding: 70px 0;
    background: #FBFBFB;
}
.functionsSec .secDesc{
    max-width: 688px;
    margin: 10px auto 0;
    text-align: center;
}
.functionsWrapper > div{
    max-width: 526px;
}
.singleFunction .imgWrapper{
    width: 106px;
    height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid #05ADA3;
    background: rgba(177, 227, 225, 0.21);
}
.singleFunction .imgWrapper img{
    max-width: 50px;
    width: 100%;
    max-height: 50px;
    height: 100%;
}
.singleFunction{
    gap: 20px;
    margin-top: 40px;
}
.functionData{
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.functionData .functionName{
    color: #000;
    font-size: 17px;
    font-weight: 600;
    line-height: 120.187%;
}
.whyusSec{
    padding: 160px 0 60px;
}
.whyusSec .secDesc{
    text-align: center;
    margin: 10px 0 40px;
}
.whyusPointsWrapper{
    justify-content: center;
    gap: 20px;
}
.singlePoint{
    padding: 22px 18px;
    border-radius: 4px 6px 0px 4px;
    border: 1px solid #F8F8F8;
    box-shadow: 0px 0px 21px 0px rgba(225, 224, 224, 0.21);
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 384px;
    position: relative;
    background: #fff;
    width: 100%;
}
.singlePoint p {
    position: relative;
    z-index: 2;
}
.singlePoint::after{
    position: absolute;
    content: '';
    width: 75px;
    height: 45px;
    background: url(../svg/01.svg);
    background-size: contain;
    right: 20px;
    top: 20px;
    background-repeat: no-repeat;
    background-position: right;
}
.singlePoint.condition::after{
    background: url(../svg/02.svg);
    background-repeat: no-repeat;
    background-position: right;
}
.singlePoint.context::after{
    background: url(../svg/03.svg);
    background-repeat: no-repeat;
    background-position: right;
}
.singlePoint.consistency::after{
    background: url(../svg/04.svg);
    background-repeat: no-repeat;
    background-position: right;
}
.singlePoint .pointName{
    color: #000;
font-size: 16px;
font-weight: 600;
line-height: 120.187%;
max-width: 284px;
}
.singlePoint p:last-child{
    min-height: 65px;
}
.whyBotText{
    text-align: center;
    margin-top: 12px;
}
.bgSec{
    background: rgba(244, 250, 249, 0.88);
}
.nlpSec{
    padding: 50px 0;
}
.nlpWrapper.flex , .highlightsWrapper.flex{
    align-items: start;
}
.nlpWrapper .secHead{
    max-width: 254px;
}
.nlpSec .contentWrapper{
    max-width: 779px;
}
.nlpSec .contentWrapper p{
    margin-top: 14px;
}
.nlpSec .contentWrapper p:first-child{
    margin-top: 0;
}
.highlightsSec{
    padding: 160px 0;
}
.highlightsSec .secDesc{
    text-align: center;
    margin: 10px 0 0;
}
.singleFunction.singleHighlight{
    border-radius: 6px;
    border: 1px solid #D4EFED;
    gap: 0;
}
.singleHighlight .imgWrapper{
    height: 134px;
    border: none;
    border-radius: 0;
    width: 86px;
    border-right: 1px solid #D4EFED;
}
.singleHighlight .imgWrapper img{
    max-width: 46px;
    max-height: 46px;
}
.singleHighlight .functionData{
    max-width: 450px;
    padding: 0 20px;
}
.whoSec{
    padding: 70px 0;
    background: #FBFBFB;
}
.whoSec .secDesc{
    text-align: center;
    margin: 10px auto 0;
    max-width: 728px;
}
.singleFunction.singleUser{
    border-radius: 6px;
    border: 1px solid #D4EFED;
    background: #FBFBFB;
    align-items: start;
    justify-content: flex-start;
    gap: 0;
    min-height: 143px;
}
.singleFunction.singleUser .imgWrapper{
    width: 66px;
    height: 62px;
    border: 1px solid #D4EFED;
    background: rgba(177, 227, 225, 0.21);
    border-top: none;
    border-left: none;
    border-radius: 0;
}
.singleFunction.singleUser .imgWrapper img{
    max-width: 38px;
    max-height: 38px;
}
.singleUser .functionData{
    padding: 18px 16px;
    max-width: 470px;
}
.singleUser .contentWrapper p{
    font-size: 13px;
}
.usersWrapper.flex{
    align-items: start;
}
.magicText{
    text-align: center;
    margin-top: 32px;
}
.howContent{
    max-width: 672px;
}
.specsWrapper.flex{
    gap: 42px;
}
.workRight{
    flex-grow: 1;
}
.workRight .singlePoint{
    padding: 53px 22px 27px 18px;
}
.workRight .singlePoint p:last-child{
    min-height: unset;
}
.workRight .singlePoint:last-child{
    margin: 13px 0 0 auto;
}
.workRight::before{
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 325px;
    height: 325px;
}
.workSec{
    padding: 160px 0;
}
.faqWraper{
    max-width: 717px;
    margin: 40px auto 0;
}
.faq-card{
    max-width: 717px;
}
.faqSec{
    padding: 70px 0;
}
.specsSec .secHead{
    max-width: 499px;
}
/* cstmSlider */
.sumr_modebodywrap{
    display: flex;
    justify-content: space-between;
    background: #fff;
    border-bottom: 1px solid #E2E8F0;
    position: relative;
    z-index: 2;
}
.customSlider .cstm_lable{
    font-family: Inter;
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
    text-align: left;    
}
.customSlider input[type="range"] {
    /* removing default appearance */
    -webkit-appearance: none;
    appearance: none; 
    /* creating a custom design */
    width: 100%;
    cursor: pointer;
    outline: none;
    border-radius: 15px;
    /*  overflow: hidden;  remove this line*/
    
    /* New additions */
    height: 2px;
    background: #DFF0FF;
  }
  
  /* Thumb: webkit */
  .customSlider input[type="range"]::-webkit-slider-thumb {
    /* removing default appearance */
    -webkit-appearance: none;
    appearance: none; 
    /* creating a custom design */
    height: 15px;
    width: 15px;
    background-color: #F5F9FF;
    border-radius: 50%;
    border: none;
    border: 1px solid #05ADA3;
    pointer-events: none;
    /* box-shadow: -407px 0 0 400px #f50; emove this line */
    transition: .2s ease-in-out;
  }
  
  /* Thumb: Firefox */
  .customSlider input[type="range"]::-moz-range-thumb {
    height: 15px;
    width: 15px;
    background-color: #F5F9FF;
    border: 1px solid #05ADA3;
    border-radius: 50%;
    border: none;
    
    /* box-shadow: -407px 0 0 400px #f50; emove this line */
    transition: .2s ease-in-out;
  }
  
  /* Hover, active & focus Thumb: Webkit */
  
  .customSlider input[type="range"]::-webkit-slider-thumb:hover {
    box-shadow: 0 0 0 10px rgba(5, 173, 163, .1)
  }
  .customSlider input[type="range"]:active::-webkit-slider-thumb {
    box-shadow: 0 0 0 13px rgba(5, 173, 163, .2)
  }
  .customSlider input[type="range"]:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 13px rgba(5, 173, 163, .2)
  }
  
  /* Hover, active & focus Thumb: Firfox */
  
  .customSlider input[type="range"]::-moz-range-thumb:hover {
    box-shadow: 0 0 0 10px rgba(255,85,0, .1)
  }
  .customSlider input[type="range"]:active::-moz-range-thumb {
    box-shadow: 0 0 0 13px rgba(255,85,0, .2)
  }
  .customSlider input[type="range"]:focus::-moz-range-thumb {
    box-shadow: 0 0 0 13px rgba(255,85,0, .2)    
  }
  
  /*=============
  Aesthetics 
  =========================*/
  .customSlider{
    display: flex;
    align-items: center;
    column-gap: 11px;
    margin-right: 17px;
  }
 .customSlider .wrapper{
    display: flex;
    align-items:center;
    column-gap: 12px;
 }
 .customSlider .wrapper span{
    font-family: Inter;
    font-size: 14px;
    font-weight: 500;
    line-height: 16.94px;
    text-align: left;
    color: #758399;
 }
  
  .customSlider .range {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
    width: 80%;
  }
  
  .customSlider .value {
    font-size: 26px;    
    width: 50px;
    text-align: center;
  }
  .customDescGroup{
    display: none;
  }
  .essayInfo.custom .customDescGroup{
    display: block;
  }
  .essayInfo.custom .selectGroup{
    display: none;
  }
   .essayInfo.custom textarea{
    max-height: 400px;
    min-height: 400px;
  }
  body,
* {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
  font-family: Inter;
  text-decoration: none;
}
.container {
  max-width: 1200px;
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}
section.reviews__head__Section {
  padding: 80px 0 345px;
  position: relative;
  display: flex;
  align-items: center;
}
.reviews__head__Wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}
.reviews__head__Wrapper h2.secHead {
  max-width: 886px;
  width: 100%;
  font-weight: 500;
  font-size: 40px;
  line-height: 130%;
  text-align: center;
  color: #000;
  margin-bottom: 25px;
  z-index: 1;
}
.reviews__head__Wrapper h2.secHead span {
  font-weight: 500;
  color: #05ada3;
}
.reviews__head__Wrapper p.secDesc {
  max-width: 544px;
  width: 100%;
  font-weight: 400;
  font-size: 17px;
  line-height: 160%;
  text-align: center;
  color: #000;
  margin-bottom: 37px;
  z-index: 1;
}
.reviews__head__Wrapper p.secDesc a {
  color: #05ada3;
  text-decoration: underline;
}
.reviews__head__Wrapper p.secDesc a:hover {
  text-decoration: none;
}
.reviews__head__Wrapper .reviews_ratings {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-bottom: 81px;
    z-index: 1;
  }
  .ratingsVal{
    max-width: 191px;
    width: 100%;
    max-height: 42px;
    height: 100%;
  }
 .reviews__head__Wrapper .reviews_ratings img {
  max-width: 580px;
  width: 100%;
  height: 100%;
  max-height: 38px;
}
.reviews__head__Wrapper .reviews_ratings img.mob {
  display: none;
} 
.reviews__Cards__Section {
  color: #fff;
  margin-top: -342px;
}
.review_Card_Wrapper {
  display: flex;
  column-gap: 24px;
  row-gap: 24px;
  width: 100%;
  justify-content: center;
}
.review_Card {
  max-width: 374px;
  width: 100%;
  background: linear-gradient(180deg, #ecf9f7 0%, #f1fbfb 100%), #ffffff;
  border: 1px solid #cef3f1;
  box-shadow: 0.944265px 0.944265px 14px 40px rgba(0, 0, 0, 0.0003);
  border-radius: 11.3312px;
  padding: 30px 20px;
}
.reviewer__Details {
  display: flex;
  column-gap: 11px;
  align-items: center;
  margin-bottom: 26px;
}
.reviewer__Details .reviewer_img {
  max-width: 38px;
  width: 100%;
  max-height: 38px;
  height: 100%;
  border-radius: 100px;
  overflow: hidden;
}
.reviewer__Details .reviewer_img img {
  max-width: 38px;
  width: 100%;
  max-height: 38px;
  height: 100%;
}
.reviewer__Details .reviewer_desc .reviewer_name {
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: #000;
  margin-bottom: 3px;
}
.reviewer__Details .reviewer_desc p {
  font-weight: 400;
  font-size: 11px;
  line-height: 13px;
  color: #3f3f3f;
  padding-top: 0 !important;
}
.reviewer__Review {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  margin-bottom: 33px;
}
.reviewer__Review .reviewer__Review__Title h2 {
  font-weight: 600;
  font-size: 19px;
  line-height: 140%;
  color: #000;
}
.reviewer__Review .reviewer__Review__Para p {
  font-weight: 400;
  font-size: 14px;
  line-height: 170%;
  color: #3f3f3f;
}
.reviewer__Education p {
  font-weight: 400;
  font-size: 11px;
  line-height: 13px;
  color: #3f3f3f;
}
.review__Cta__Section {
  padding: 149px 0 112px 0;
  position: relative;
}
.review__Cta__Section .review__Cta__Wrapper {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 858px;
  width: 100%;
  row-gap: 35px;
}
.review__Cta__Wrapper .review__Cta .review__Cta__Head {
  font-weight: 500;
  font-size: 45px;
  line-height: 54px;
  text-align: center;
  color: #000;
  margin-bottom: 18px;
}
.review__Cta__Wrapper .review__Cta p.review__Cta__Text {
  max-width: 712px;
  width: 100%;
  margin: 0 auto;
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  color: #3f3f3f;
}
.review__Cta__Btn__Wrapper {
  display: flex;
}
.review__Cta__Btn__Wrapper a.contentCenter {
  margin: 0 auto;
}
.review__Cta__Btn__Wrapper button.review__Cta__Btn {
  padding: 16px 3px 19px 3px;
  background: linear-gradient(180deg, #24c7bd 0%, #046761 100%);
  border-radius: 100px;
  margin: 0 auto;
  border: none;
  cursor: pointer;
}
.review__Cta__Btn__Wrapper button.review__Cta__Btn:hover {
  background: #019990;
}
.cta__Btn__Inner {
  padding: 17px 63.29px 17px 41px;
  background: transparent;
  border-radius: 100px;
}
.review__Cta__Btn__Wrapper button.review__Cta__Btn span.cta__Btn__Inner span {
  position: relative;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.03em;
  color: #fff;
}
.review__Cta__Btn__Wrapper
  button.review__Cta__Btn
  span.cta__Btn__Inner
  span::after {
  position: absolute;
  content: "";
  top: 6px;
  margin-left: 6.71px;
  width: 15.58px;
  height: 11.33px;
  background-image: url(../reviewctaarrowwhite.html);
  background-repeat: no-repeat;
}
.review__Cta__Btn__Wrapper button.review__Cta__Btn:hover .cta__Btn__Inner {
  background-color: transparent;
}
.review__Cta__Btn__Wrapper
  button.review__Cta__Btn:hover
  .cta__Btn__Inner
  span::after {
  background-image: url(../reviewctaarrowwhite.html);
  background-repeat: no-repeat;
} /* card animation */
/* .review_Card {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s, transform 1s;
}
.is-visible {
  opacity: 1;
  transform: translateY(0);
} */
@media (max-width: 1170px) {
  .review_Card {
    max-width: 364px;
  }
}
@media (max-width: 802px) {
  section.reviews__head__Section {
    padding: 60px 0 158px;
  }
  .reviews__head__Wrapper .reviews_ratings {
    margin-bottom: 97px;
  }
  .reviews__head__Wrapper .reviews_ratings img.desk {
    max-width: 580px;
    width: 100%;
    max-height: 38px;
    height: 100%;
    display: none;
  }
  .reviews__head__Wrapper .reviews_ratings img.mob {
    max-width: 330px;
    width: 100%;
    max-height: 22px;
    height: 100%;
    display: block;
  }
  .reviewer__Details .reviewer_img img {
    max-width: 38px;
    width: 100%;
    max-height: 38px;
    height: 100%;
  }
  .reviewer__Details .reviewer_desc .reviewer_name {
    font-weight: 600;
    font-size: 12.3904px;
    line-height: 15px;
  }
  .reviewer__Details .reviewer_desc p {
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
  }
  .reviewer__Review .reviewer__Review__Title h2 {
    font-weight: 600;
    font-size: 16px;
    line-height: 140%;
  }
  /* .reviewer__Review .reviewer__Review__Para p {
    font-weight: 400;
    font-size: 11px;
    line-height: 170%;
  } */
  .reviewer__Education p {
    font-weight: 400;
    font-size: 10px;
    line-height: 12px;
  }
  .reviewer__Details .reviewer_img {
    max-width: 34px;
    width: 100%;
    max-height: 34px;
    height: 100%;
    border-radius: 100px;
    overflow: hidden;
  }
  .reviews__head__Wrapper h1.secHead {
    font-size: 28px;
    line-height: 130%;
  }
  .reviews__head__Wrapper p.secDesc {
    font-size: 12px;
    line-height: 160%;
  }
  .reviews__Cards__Section {
    margin-top: -158px;
  }
  /* .review_Card {
    max-width: 100%;
  } */
  .review__Cta__Wrapper .review__Cta .review__Cta__Head {
    font-size: 30px;
    line-height: 36px;
  }
  .review__Cta__Wrapper .review__Cta p.review__Cta__Text {
    font-size: 15px;
    line-height: 150%;
    max-width: 330px;
  }
  .review__Cta__Btn__Wrapper button.review__Cta__Btn {
    padding: 17px 3px 18px 3px;
  }
  .cta__Btn__Inner {
    padding: 15px 53.41px 15px 34px;
  }
  .review__Cta__Btn__Wrapper button.review__Cta__Btn span.cta__Btn__Inner span {
    font-size: 15px;
    line-height: 18.15px;
  }
  .review__Cta__Section {
    padding: 90px 0 112px 0;
  }
}
@media (max-width:992px) {
    .reviews_ratings {
      flex-direction: column;
      align-items: center;
    }
    .review_Card_Wrapper{
        justify-content: center;
      }
  }

@media (max-width:1418px) {
    .specsContent {
        max-width: 540px;
    }
    .functionData{
        max-width: 390px;
    }
    .singleHighlight .functionData{
        max-width: 430px;
    }
    .singleUser .functionData{
        max-width: 450px;
    }
}
@media (max-width: 1365px) {
    .specsWrapper.flex{
        justify-content: center;
        gap: 100px;
    }
    .specsSec {
        padding: 60px 0;
    }
    .functionsWrapper{
        justify-content: center;
    }
    .highlightsWrapper.flex{
        justify-content: center;
    }
    .usersWrapper.flex{
        justify-content: center;
    }
}
@media (max-width: 1199px) {    
    .languagesFilterWrapper .hideAfter{
        display: none;
    }
    .languageDropdownWrapper a:nth-child(n - 3) {
        display: block;
    }
    .languageDropdownWrapper{
        bottom: -273px;
        right: -328px;
        width: 400px;
    }
    .specsContent {
        max-width: 456px;
    }
    .functionData{
        max-width: 350px;
    }
    .singlePoint{
        max-width: 45%;
        width: 100%;
    }
    .whyusPointsWrapper{
        justify-content: center;
        gap: 20px;
    }
    .nlpSec .contentWrapper {
        max-width: 700px;
    }
    .singleHighlight .functionData{
        max-width: 386px;
    }
    .singleUser .functionData{
        max-width: 403px;
    }
    .singleUser .contentWrapper p{
        min-height: 100px;
    }
    .wrapperRight {
        width: calc(100% - 230px);
    }
    .review_Card_Wrapper {
        flex-wrap: wrap;
      }
    .flexWrapper {
        flex-wrap: wrap;
        justify-content: center !important;
        gap: 36px;
    }
}
@media (max-width: 991px) {
    .essayWriterBodyWrapper{
        padding: 25px 15px 20px;
    }
    .modesWrapper{
        overflow-x: auto;
    }
    /* width */
    .modesWrapper::-webkit-scrollbar {
    width: 6px;
    height: 2px;
  }
  
  /* Track */
    .modesWrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  
  /* Handle */
    .modesWrapper::-webkit-scrollbar-thumb {
    background: #bbb9b9;
    border-radius: 8px;
  }
  
  /* Handle on hover */
    .modesWrapper::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
  .essayWriterOutput {
    min-height: 300px;
    }
}
@media (max-width:767px) {
    .formWrapper {
       
        min-height: calc(100vh - 167px);
    }
    .wrapperRight {
        width: 100%;
    }
    .modesWrapperMob{
        display: flex;
        overflow-x: visible;
        border-bottom: 1px solid #E2E8F0;
    }
    .customSlider {
        
        margin: auto;
    }
    .sumr_modebodywrap {
         
        border-bottom: unset;
        z-index: 1;
        padding: 24px 16px 12px;

    }
    .customSlider .cstm_lable {
        font-size: 13px;
        display: block;
        max-width: 100px;
        width: 100%;
    }
    .modesWrapperDsktp{
        display: none;
    }
    .modesWrapper a{
        width: 100%;
        min-width: 124px;
        justify-content: center;
        padding-bottom: 14px;
    }
    .modesDropdownWrapper{
        display: none;
    }
    .modesDropdownWrapper{
        display: none;
    }
    .modesDropdownWrapper.show{
        display: flex;
        bottom: -143px;
    }
    .modesDropdownWrapper a{
        justify-content: start;
    }
    #outerMode svg.flip{
        transform: rotate(180deg);
    }
    .answerPrompts{
        display: none;
    }
}
@media (max-width: 575px) {
    .essayWriterBodyWrapper{
        padding: 25px 0 20px;
    }
    .formWrapper {
        padding: 25px 10px 30px;
    }
    .inputGroup textarea{
        font-size: 14px;
    }
    .inputGroup textarea::placeholder {
        /* Adjust placeholder styles for better performance */
        color: #858585;
        font-size: 14px; /* Set the same font size as textarea for consistency */
    }
    .newOutputs.withData, .history.withData{
        padding: 25px 10px 40px;
    }
    .generatedEssay {
        padding-top: 0;
    }
    .outputHead{
        display: none;
    }
    .newOutputs.zeroData{
        display: none;
    }
    .sentenceJumperBtns a{
        padding: 1px 4px;
    max-height: 20px;
    }
    .sentenceJumperBtns a svg {
        width: 12px;
    }
    .outputInfoWrapper *{
        font-size: 13px;
    }
    .essayWriterWrapper h2{
        font-size: 22px;
    }    
    .generateEssayBtn .btnText{
        font-size: 14px;
    }
    .generateEssayBtn{
        padding: 5px 20px;
        line-height: 100%;
    }
    #generate-essay-processing-btn {
        height: 32px;
        display: flex;
        align-items: center;
    }
    .generate-essay-processing svg {
        height: 18px;
    }
    .languageDropdownWrapper{
        right: 0;
        width: 330px;
    }
    .languagesFilterWrapper{
        max-width: 100%;
    }
    .languagesFilterWrapper .PortugueseDsktp{
        display: none;
    }
    .languagesFilterWrapper .PortugueseMob{
        display: block;
    }
    .modesWrapper a, .modesWrapper p{
        font-size: 14px;
    }
    .modesDropdownWrapper{
        bottom: -141px;
    }
    .singleUser .functionData {
        max-width: 262px;
    }
    .backBtn{
        display: none;
    }
    .secHead{
        font-size: 24px;
    }
    .specsSec{
        padding: 70px 0;
    }
    .specsContent h2{
        margin-bottom: 30px;
    }
    table.modesTable td{
        padding: 13px 5px;
    }
    table.modesTable tr td:first-child{
        min-width: 105px;
    }
    .singleFunction .imgWrapper{
        min-width: 50px;
        height: 50px;
    }
    .singleFunction{
        gap: 10px;
        flex-wrap: nowrap;
        align-items: start;
    }
    .singleFunction .imgWrapper img{
        max-width: 30px;
        max-height: 30px;        
    }
    .whyusSec{
        padding: 70px 0;
    }
    .singlePoint{
        max-width: 100%;
    }
    .nlpSec .contentWrapper p:first-child {
        margin-top: 30px;
    }
    .highlightsSec{
        padding: 70px 0;
    }
    .singleHighlight .functionData{
        padding: 10px 20px;
    }
    .singleHighlight .imgWrapper{
        border-bottom: 1px solid #D4EFED;   
    }
    .singleFunction.singleUser .imgWrapper img{
        max-width: 30px;
        max-height: 30px;        
    }
    .fileLabel {
        flex-basis: 100%;
    }
    .ewBtns{
        flex-wrap: wrap;
        row-gap: 15px;
    }
    .whoSec {
        padding: 0 0 70px;
    }
    .reviews__head__Wrapper h2.secHead {
        font-size: 28px;
        line-height: 130%;
    }
    .toolsBtnsWrapper {
        flex-direction: column;
        justify-content: center;
        flex-wrap: nowrap;
    }
}
