.demoHolder {
    display: flex;
    position: relative;
}
#demoDomain {
    display: inline-block;
    padding: 8px;
    width: 320px;
    font-size: 14px;
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px;
    background-color: #FFF;
    border: 2px solid #FEBA3F;
    border-right: none;
    font-family: 'Helvetica Neue', 'Liberation Bold', Arial, Helvetica, sans-serif;
}
#demoDomain:focus-visible {
    outline: none;
}
.demoDomainBtn {
    display: inline-block;
    font-size: 12px;
    padding: 8px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Helvetica Neue', 'Liberation Bold', Arial, Helvetica, sans-serif;
    border-top-right-radius: 3px;
    border-top-right-radius: 3px;
    background-color: #FEBA3F;
    border: 2px solid #FEBA3F;
    text-decoration: none;
    text-align: center;
    vertical-align: middle;
    color: #000;
    cursor: pointer;
    transition: 0.25s;
}
#warningAlert {
    display: flex;
    opacity: 0;
    z-index: 0;
    position: absolute;
    top: -45px;
    width: fit-content;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 15px;
    background-color: #006D66;
    transition: opacity 0.5s ease-out;
}

.showAlert {
    opacity: 1 !important;
    z-index: 1;
}
/* #warningAlert::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 0;
    width: 0;
    height: 0;
    border-top: 18px solid transparent;
    border-bottom: 18px solid transparent;
    border-left: 20px solid #006D66;
    clear: both;
} */
#warningAlert p {
    color: #fff;
    font-weight: 500;
    font-family: 'Helvetica Neue', 'Liberation Bold', Arial, Helvetica, sans-serif;
}

.article {
    opacity: 0;
    transition: transform 1.5s cubic-bezier(.16, .83, .37, 1);
    transform: translate(0, 150px);
    /* transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1); */
}
code {
    font-family: monospace;
    font-style: italic;
    font-size: 17px;
}

#click_hand {
    background: url('../img/click_hand.png') repeat;
    z-index: 999;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    bottom: 2rem;
    width: 160px;
    height: 178.5px;
    background-size: 3520px 178.5px;
    transition: translate();
    animation: click_hand 5s steps(22) infinite forwards;
    opacity: 1;
}
@keyframes click_hand {
    80% {
        background-position: 0;
    }
    100% {
        background-position: -3520px;
    }
}

.hero {
    padding-top: 80px;
    padding-bottom: 50px;
    background: url('../img/homeWaveBG.png') no-repeat center 100%;
    background-size: cover;
}
.hero .inner {
    width: 100%;
    margin: 0 auto;
    padding: 30px;
    max-width: 1000px;
}
.hero .demoInput {
    margin-left: -68px;
    position: relative;
    width: 70%;
}
.hero .demoInput .roundArrBtn {
    display: block;
    opacity: 0;
    position: absolute;
    width: 59px;
    height: 59px;
    top: -30px;
    right: 7px;
    border-radius: 50%;
    background: #ffba41 url('../img/white_arrow.png') no-repeat center;
    background-size: 35px;
    transition: all 0.2s ease;
}
.hero .demoInput .roundArrBtn:hover {
    background: #faae2b url('../img/white_arrow.png') no-repeat center;
    background-size: 35px;
}
.hero .demoInput .roundArrBtn:hover,
.hero .demoInput .roundArrBtn:focus {
    box-shadow: none !important;
}
.hero .demoInput::before {
    display: block;
    position: absolute;
    content: '';
    width: 37px;
    height: 45px;
    top: 16px;
    left: 16px;
    background: url('../img/new_search_icon.png') no-repeat;
    background-size: 85%;
}
.hero .demoInput::after {
    display: block;
    position: absolute;
    content: '';
    width: 180px;
    height: 80px;
    top: 10px;
    right: -154px;
    background: url('../img/Hand04.png') no-repeat;
    background-size: 100%;
    animation: nudge 4s linear infinite;
    transition: all 0.5s ease;
}
  
@keyframes nudge {
    0% { 
        right: -154px;
    }
    5% {
        right: -124px;
    }
    10% {
        right: -154px;
    }
    15% {
        right: -124px;
    }
    20%, 100% {
        right: -154px;
    }
}
.hero input {
    height: 70px;
    width: 100%;
    padding: 12px 65px;
    padding-right: 75px;
    margin-bottom: 35px;
    border: none;
    outline: none;
    font-size: 26px;
    border-radius: 36px;
    background-color: #fff;
    font-family: 'Helvetica Neue', 'Liberation Regular', Arial, Helvetica, sans-serif;
}
.hero input::selection {
    background: #fce9c9;
}
.hero .demoInput:focus-within::after {
    animation: none;
    transition: all 0.5s ease;
    right: -205px;
}
.hero .demoInput:focus-within .roundArrBtn {
    opacity: 1;
}
.hero p {
    font-size: 20px;
    line-height: 30px;
    max-width: 340px;
    font-family: 'Helvetica Neue', 'Liberation Regular', Arial, Helvetica, sans-serif;
}
.hero a {
    display: block;
    margin-top: 35px;
    width: 143px;
    font-size: 16px;
    padding: 16px 0;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Helvetica Neue', 'Liberation Bold', Arial, Helvetica, sans-serif;
    border-radius: 12px;
    background-color: #FEBA3F;
    border: 2px solid #FEBA3F;
    text-decoration: none;
    text-align: center;
    color: #000;
    transition: 0.25s;
}
.hero a:hover,
.hero a:focus {
    background-color: #fff;
    /* box-shadow: inset -71px 0 0 0 #fff, inset 71px 0 0 0 #fff; */
}

.partOfUs {
    padding-top: 70px;
}
.partOfUs .inner {
    display: flex;
    width: 100%;
    margin: 0 auto;
    flex-flow: column nowrap;
}
.partOfUs .inner p {
    text-align: center;
    font-weight: 300;
    margin-bottom: 50px;
    font-size: 50px;
    line-height: 30px;
    font-family: 'Helvetica Neue', 'Liberation Regular', Arial, Helvetica, sans-serif;
}

.marquee .partOfUsImgs {
    padding: 1rem;
    max-height: 80px;
    object-fit: contain;
}
.orb {
    display: inline-block;
    width: 150px;	
    border-radius: 50px;
    height: 50px;
    margin: 0 24.7px;
    float: left;
  }
  
  .orb:hover {
    transform: scale(1.2);
    opacity: .5;
    cursor: pointer;
  }
  
  .img-partOfUs{
    width: 225px;
    margin: 20px;
  }
  .img-partOfUs:hover {
    transform: scale(1.2);
    opacity: .5;
    cursor: pointer;
  }
  
  
  .marquee-span:hover {
    animation-play-state: paused;
  }
  .partOfUs-container{
    margin: 30px auto;
    display: flex;
    width: 1300px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .marquee {
    height: 200px;
    width: 1400px;
    width: 100vw;
    /* border: 2px solid #eee; */
    overflow: hidden;
    box-sizing: border-box;
    position: relative;
}
#rottemlImg{
    
}
.marquee--inner {
    display: block;
    width: 100%;
    /* height: 100%; */
    position: absolute;
    /* animation: marquee 20s linear infinite; */
}
.marquee-atags{
    display: flex;
    justify-content: space-around;
}

.marquee-span {
    position: absolute;
    /* left: 50px; */
    /* transition: all .2s ease-out; */
    /* float: right; */
    animation: marquee 20s linear infinite;
    /* animation-delay: 2s; */
    width: 100%;
    right: -100%;
    height: 100%;
}
#marquee-span{
    /* animation-delay: 10s; */
}

  
  @keyframes marquee {
    0% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
    
    
  }
  .partOfUsImgs {
    width: 160px;
  }
/* .partOfUs > div > div > img:nth-child(1),
.partOfUs > div > div > img:nth-child(2),
.partOfUs > div > div > img:nth-child(3) {
    margin-bottom: 60px;
} */

.siteSearch {
    width: 98%;
    margin-left: 2%;
    margin-top: 80px;
    background-color: #ffba41;
    border-top-left-radius: 400px;
    border-bottom-left-radius: 400px;
    box-shadow: 0 9px 0 5px #ebeff3;
}
.siteSearch .inner {
    /* width: 60%;
    margin-left: 21%;
    padding: 40px 20px;
    max-width: 1020px; */
    width: 63%;
    margin-left: 18%;
    padding: 40px 0px;
    max-width: 1020px;
}
.siteSearch .inner h1 {
    font-size: 46px;
    margin-bottom: 20px;
    font-family: 'Helvetica Neue', 'Liberation Bold', Arial, Helvetica, sans-serif;
}
.siteSearch .inner p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 30px;
    font-family: 'Helvetica Neue', 'Liberation Bold', Arial, Helvetica, sans-serif;
}
.siteSearch .inner .options > a {
    grid-area: mb;
    display: block;
    width: 100%;
    max-width: 430px;
    font-size: 16px;
    height: 52px;
    padding: 17px 70px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Helvetica Neue', 'Liberation Bold', Arial, Helvetica, sans-serif;
    border-radius: 12px;
    background-color: #fff;
    border: 2px solid #fff;
    text-decoration: none;
    text-align: center;
    color: #000;
    transition: 0.25s;
}
.siteSearch .inner .options > a:hover,
.siteSearch .inner .options > a:focus {
    background-color: #ffba41;
}

.siteSearch .options {
    display: grid;
    /* grid-template-areas:
    'ac ac sc sc'
    'ac ac an an'; */
    grid-template-areas:
    'ac ac sc sc'
    'ac ac sc sc'
    'ac ac an an'
    'mb mb an an';
    gap: 20px;
    background-color: transparent;
    position: relative;
    padding: 0;
    grid-template-columns: min-content;
}
.siteSearch .options::before {
    display: block;
    position: absolute;
    content: '';
    top: -129px;
    right: 60px;
    width: 60px;
    height: 132px;
    background: url('../img/goLive.png') no-repeat;
    background-size: contain;
}
.siteSearch .options div {
    background-color: #fff;
    border-radius: 12px;
    display: flex;
    flex-flow: column nowrap;
}
.siteSearch .options > div,
.siteSearch .options > section {
    width: 100%;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    max-width: 430px;
}
.siteSearch .options p {
    text-align: center;
    margin: 5px 0;
}
.siteSearch .options a {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    height: 100%;
    color: #000;
    text-decoration: none;
}
.siteSearch .options img {
    margin: 10px;
    padding: 10px;
    position: relative;
    transition: all 0.2s ease;
    width: calc(100% - 20px);
    border-radius: 12px;
    background-color: #cecece;
    left: 0px;
    top: 0px;
}
.siteSearch .options img:hover {
    margin: 0;
    margin-bottom: 5px;
    width: 100%;

    /*  width: 100%;
    left: -10px;
    top: -10px; */
}
.siteSearch .options .spellCheck img:hover,
.siteSearch .options .analysis img:hover {
    margin: 0;
    margin-bottom: 13px;
    width: 100%;

    /*  width: 100%;
    left: -10px;
    top: -10px; */
}
.siteSearch .autocomplete {
    grid-area: ac;
}
/* .siteSearch .autocomplete p {
    margin: auto;
} */
.siteSearch .spellCheck {
    grid-area: sc;
}
.siteSearch .analysis {
    grid-area: an;
}


.yourDomain {
    padding: 70px 0 40px;
}
.yourDomain .inner {
    display: flex;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 40px;
    align-items: flex-start;
    justify-content: space-between;
    flex-flow: row nowrap;
}
.yourDomain .inner .inputHolder {
    width: 50%;
    position: relative;
}
.yourDomain .inner .inputHolder::before {
    display: block;
    position: absolute;
    content: '';
    width: 31px;
    height: 35px;
    top: 11px;
    left: 16px;
    background: url('../img/new_search_icon.png') no-repeat;
    background-size: 85%;
}
.yourDomain .yourDomainInput {
    width: 100% !important;
    border-radius: 25px !important;
    font-size: 22px !important;
    border-right: 2px solid #feba3f !important;
    padding: 10px !important;
    padding-left: 55px !important;
    box-shadow: -5px 3px 5px 0px #cecece;
}
.yourDomain .yourDomainBtn {
    display: block;
    cursor: pointer;
    width: 143px;
    font-size: 16px;
    padding: 14px 0;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Helvetica Neue', 'Liberation Bold', Arial, Helvetica, sans-serif;
    border-radius: 12px;
    background-color: #FEBA3F;
    border: 2px solid #FEBA3F;
    text-decoration: none;
    text-align: center;
    color: #000;
    transition: 0.25s;
}
.yourDomain .yourDomainBtn:hover,
.yourDomain .yourDomainBtn:focus {
    background-color: #fff;
}
.yourDomain img {
    width: 140px;
    margin-top: 10px;
}

.ecomExperience {
    padding: 120px 0 0;
    background: #ebeff3 url('../img/ecomExpBG.png') no-repeat center 0;
    background-size: cover;
}
.ecomExperience .inner {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    margin: 0 auto;
    padding: 70px 30px;
    max-width: 1110px;
}
.ecomExperience .inner > div {
    width: 24%;
    margin-bottom: 15px;
    padding: 15px;
}
.ecomExperience .withText {
    position: relative;
}
.ecomExperience .withText h1 {
    font-size: 32px;
    line-height: 40px;
    margin-bottom: 20px;
    font-family: 'Helvetica Neue', 'Liberation Bold', Arial, Helvetica, sans-serif;
}
.ecomExperience .withText p {
    font-size: 20px;
    position: relative;
    width: 125%;
    line-height: 25px;
    font-family: 'Helvetica Neue', 'Liberation Bold', Arial, Helvetica, sans-serif;
}
.ecomExperience .withImg img {
    width: 100%;
}
.ecomExperience .sm_md {
    display: none;
}
.ecomExperience .lg {
    padding-top: 0 !important;
}
.ecomExperience .card {
    cursor: pointer;
    height: fit-content;
    text-align: center;
    position: relative;
    background-color: #fff;
    border-radius: 23px;
    padding: 0 !important;
}
.ecomExperience .card img {
    width: calc(100% - 20px);
    transition: all 0.2s ease;
    margin: 10px;
}
.ecomExperience .card img:hover {
    margin: 0;
    margin-bottom: 4px;
    width: 100%;
}
.ecomExperience .card p {
    margin: 15px 0;
    text-align: center;
    font-family: 'Helvetica Neue', 'Liberation Bold', Arial, Helvetica, sans-serif;
}
.ecomExperience .card > a {
    color: #000;
    text-decoration: none;
}
.ecomExperience .withBtn a {
    display: block;
    width: 100%;
    font-size: 16px;
    height: 52px;
    padding: 17px 0;
    font-weight: bold;
    text-transform: uppercase;
    font-family: 'Helvetica Neue', 'Liberation Bold', Arial, Helvetica, sans-serif;
    border-radius: 12px;
    background-color: #FEBA3F;
    border: 2px solid #FEBA3F;
    text-decoration: none;
    text-align: center;
    color: #000;
    transition: 0.25s;
}
.ecomExperience .withBtn a:hover,
.ecomExperience .withBtn a:focus {
    background-color: #fff;
}

.howItWorksOuter {
    padding-bottom: 50px;
    background-color: #ebeff3;
}
.howItWorks {
    padding: 40px 0;
    margin-top: 70px;
    background-color: #ffba41;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    box-shadow: 3px 10px 0px 5px #ffdea3;
}
.howItWorks > div {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    width: 100%;
    height: 100px;
    max-width: 1082px;
    margin: 0 16%;
}

.feedback {
    padding-bottom: 30px;
    background-color: #ebeff3;
}
.feedback .inner {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    margin: 0 auto;
    padding: 70px 30px;
    max-width: 1110px;
}
.feedback .inner h1 {
    font-size: 40px;
    margin-bottom: 54px;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Helvetica Neue', 'Liberation Bold', Arial, Helvetica, sans-serif;
}
.feedback .cards {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}
.feedback .card::before {
    content: '“';
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    font-size: 110px;
    font-family: 'Helvetica Neue', 'Liberation Bold', Arial, Helvetica, sans-serif;
}
.feedback .card::after {
    content: '“';
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    font-size: 110px;
    font-family: 'Helvetica Neue', 'Liberation Bold', Arial, Helvetica, sans-serif;
}
.feedback .card {
    width: 31%;
    padding: 70px 30px;
    border-radius: 23px;
    position: relative;
    background-color: #fff;
}
.feedback .card p {
    font-size: 20px;
    line-height: 30px;
    font-family: 'Helvetica Neue', 'Liberation Bold', Arial, Helvetica, sans-serif;
}

header {
    position: fixed;
    width: 100%;
    z-index: 99999;
    padding: 10px 0;
    background-color: #ffba41;
    box-shadow: 0px 2px 7px 2px #cecece;
}
header .headerBlock {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    width: 940px;
    margin: 0 auto;
}
header h4 {
    height: 35px;
    color: #000;
    font-family: 'Lora Bold', 'Times New Roman', Times, serif;
    font-size: 27px;
    font-weight: bold;
    line-height: 36px;
}
header img {
    width: 98px;
}
header > div {
    display: flex;
    flex-flow: row nowrap;
}
header .mobTopMenu {
    display: none;
}
header ul {
    margin-top: 6px;
    margin-right: 2vw;
    display: flex;
    justify-content: space-between;
    flex-flow: row nowrap;
}
header ul li a {
    display: inline-flex;
    align-items: center;
    height: 30px;
    width: auto;
    margin-right: 16px;
    color: #000;
    font-family: 'Helvetica Neue', 'Liberation Bold', Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    line-height: 11px;
    outline: 0;
    text-decoration: none;
    text-transform: uppercase;
}
header .deskTopMenu {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}
header > div ul a {
    display: inline-flex;
    text-decoration: none;
    text-align: center;
    width: auto;
    height: 30px;
    color: #000;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    outline: 0;
    transition: 0.25s;
    border-bottom: 2px solid transparent;
    font-family: 'Helvetica Neue', 'Liberation Bold', Arial, Helvetica, sans-serif;
}
header > div ul a:hover {
    border-bottom: 2px solid #000;
}
header .redirectBtn {
    display: flex;
}
header .redirectBtn a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    text-align: center;
    background-color: #fff;
    width: auto;
    height: 36px;
    padding: 0 10px;
    color: #000;
    font-size: 12px;
    font-weight: bold;
    outline: 0;
    border: 2px solid #fff;
    text-transform: uppercase;
    border-radius: 3px;
    border-color: #fff;
    transition: 0.25s;
    font-family: 'Helvetica Neue', 'Liberation Bold', Arial, Helvetica, sans-serif;
}
header .redirectBtn a:first-child {
    margin-right: 10px;
}
header .redirectBtn a:hover,
header .redirectBtn a:focus {
    background-color: #ffba41;
}
header .mobTopMenuBtn {
    display: none;
}
header .deskTopSubMenu,
footer .deskTopSubMenu,
header .deskTopSubMenu2,
footer .deskTopSubMenu2,
header .deskTopSubMenu3,
footer .deskTopSubMenu3 {
    width: auto;
    padding: 15px 15px 0;
    flex-flow: column nowrap;
    position: absolute;
    z-index: 9999;
    margin-top: 10px;
    background-color: #fff;
    border-top: 1px solid #ffba41;
    border-bottom: 5px solid #ffba41;
}
header .deskTopSubMenu > li > a,
footer .deskTopSubMenu > li > a,
header .deskTopSubMenu2 > li > a,
footer .deskTopSubMenu2 > li > a,
header .deskTopSubMenu3 > li > a,
footer .deskTopSubMenu3 > li > a {
    width: auto;
    display: block;
    font-size: 11px;
    margin-bottom: 18px;
    margin-right: 0 !important;
}
header .deskTopMenu > ul > li:nth-child(2),
header .deskTopMenu > ul > li:nth-child(3),
header .deskTopMenu > ul > li:nth-child(5),
header .mobTopMenu > ul > li:nth-child(2),
header .mobTopMenu > ul > li:nth-child(3),
header .mobTopMenu > ul > li:nth-child(5),
footer .firstMenu > li:nth-child(2),
footer .firstMenu > li:nth-child(3),
footer .firstMenu > li:nth-child(5) {
    position: relative;
}
header .deskTopMenu > ul > li:nth-child(2),
header .deskTopMenu > ul > li:nth-child(3),
header .deskTopMenu > ul > li:nth-child(5),
footer .firstMenu > li:nth-child(2),
footer .firstMenu > li:nth-child(3),
footer .firstMenu > li:nth-child(5) {
    margin-right: 10px;
    cursor: pointer;
    position: relative;
}
header .mobTopMenu > ul > li:nth-child(2),
header .mobTopMenu > ul > li:nth-child(3),
header .mobTopMenu > ul > li:nth-child(5) {
    position: relative;
}
header .hidden,
footer .hidden {
    display: none !important;
}


footer {
    padding: 40px 0 80px 0;
    width: 702px;
    margin: 0 auto;
    display: flex;
    flex-flow: column nowrap;
}
footer > div {
    display: flex;
    padding-bottom: 8px;
    border-bottom: 1px solid #D8D8D8;
    flex-flow: row nowrap;
    justify-content: space-between;
}
footer > div > .firstMenu {
    display: flex;
    width: calc(100% - (175px));
    margin-top: 10px;
    flex-flow: row nowrap;
}
footer > div > .secondMenu {
    display: flex;
    margin-top: 3px;
    flex-flow: column nowrap;
    margin-left: -84px;
}
footer > div > .firstMenu li a {
    font-family: 'Helvetica Neue', 'Liberation Bold', Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    margin-right: 27px;
    display: block;
}
footer > div > .secondMenu li a {
    font-family: 'Helvetica Neue', 'Liberation Regular', Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #000;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
}
footer > div > .secondMenu li:first-child a {
    margin-bottom: 16px;
    font-weight: bold;
}
footer > div > .firstMenu li:last-child a {
    letter-spacing: 0.5px;
}
footer .holder {
    width: 175px;
    display: flex;
    flex-flow: column nowrap;   
}
footer .buttons {
    display: flex;
    justify-content: space-between;    
}
footer .buttons a {
    display: block;
    width: 79px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 11px;
    font-family: 'Helvetica Neue', 'Liberation Bold', Arial, Helvetica, sans-serif;
    background-color: #ffba41;
    padding: 10px 0;
    font-weight: bold;
    border-radius: 3px;
    color: #000;
    text-align: center;
    border: 2px solid #FEBA3F;
    transition: 0.35s;
}
footer .buttons a:hover,
footer .buttons a:focus {
    background-color: #fff;
}
footer .holder ul {
    display: flex;
    width: 45px;
    margin-top: 25px;
    align-self: flex-end;
    flex-flow: row nowrap;
    justify-content: space-between;    
}
footer > span,
.footerMob > span {
    font-family: 'Helvetica Neue', 'Liberation Regular', Arial, Helvetica, sans-serif;
    font-size: 11px;
    margin-top: 18px;
}
footer > span > a,
.footerMob > span > a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
footer > span > a:hover {
    color: #a2a2a2;
    transition: color 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.sm {
    transform: translate(0, 107px);
    padding: 0 !important;
}
.footerMob {
    display: none;
}
#websiteFrameH1 {
    font-size: 38px;
    line-height: 53px;
    margin: 0;
    padding-top: 90px;
    padding-bottom: 10px;
    /* margin-top: 20px;
    margin-bottom: 25px; */
    text-align: center;
    font-family: 'Lora Bold', 'Times New Roman', Times, serif;
}
.howItWorks {
    padding: 40px 0;
    width: 93%;
    margin-top: 70px;
    background-color: #ffba41;
    border-top-right-radius: 100px;
    border-bottom-right-radius: 100px;
    box-shadow: 3px 10px 0px 5px #ffdea3;
}
.howItWorks > div {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    width: 100%;
    height: 100px;
    max-width: 1082px;
    margin: 0 16%;
}
.howItWorks > div h1 {
    width: 30%;
    font-size: 38px;
    font-weight: 500;
    font-family: 'Helvetica Neue', 'Liberation Bold', Arial, Helvetica, sans-serif;
}
.howItWorks > div img {
    margin-left: 20px;
    margin-right: 48px;
}
.howItWorks > div .btns {
    display: flex;
    flex-flow: row nowrap;
}
.howItWorks > div .btns a {
    display: block;
    padding: 17px 42px;
    text-decoration: none;
    text-transform: uppercase;
    color: #000;
    font-size: 19px;
    border-radius: 18px;
    font-weight: 500;
    background-color: transparent;
    border: 2px solid #fff;
    transition: all 0.2s ease;
    font-family: 'Helvetica Neue', 'Liberation Bold', Arial, Helvetica, sans-serif;
}
.howItWorks > div .btns a:hover {
    background-color: #fff;
}
.howItWorks > div .btns a:first-child {
    margin-right: 20px;
}

@media (min-width: 1565px) {
    .siteSearch .inner {
        margin: 0 auto;
    }
    .siteSearch .spellCheck img:hover ,
    .siteSearch .analysis img:hover {
        margin-bottom: 14px;
    }
    .siteSearch .options::before {
        right: 12%;
    }
}
@media (min-width: 790px) and (max-width: 1173px) {
    header {
        width: 100%;
        margin: 0 auto;
        padding: 11px 10vw;
    }
    header .headerBlock {
        width: 100%;
    }
    header h4 {
        font-size: 19px;
        line-height: 24px;
    }
    header img {
        width: 80px;
    }
    header ul {
        margin-top: 0;
        align-items: center;
    }
    header ul li a {
        font-size: 12px;
    }
    header .deskTopSubMenu,
    footer .deskTopSubMenu,
    header .deskTopSubMenu2,
    footer .deskTopSubMenu2,
    header .deskTopSubMenu3,
    footer .deskTopSubMenu3 {
        width: 110px !important;
        align-items: flex-start;
        padding-left: 10px !important;
    }
    header .deskTopSubMenu > li > a,
    footer .deskTopSubMenu > li > a,
    header .deskTopSubMenu2 > li > a,
    footer .deskTopSubMenu2 > li > a,
    header .deskTopSubMenu3 > li > a,
    footer .deskTopSubMenu3 > li > a {
        font-size: 1vw;
    }
    footer {
        padding: 55px 10vw 55px;
        width: 100%;
        margin: 0 auto;
    }
    footer > div {
        padding-bottom: 6px;
    }
    footer > div > .firstMenu li a {
        font-size: 1vw;
        margin-bottom: 19px;
    }
    footer .holder {
        width: 150px;
    }
    footer .buttons a {
        width: 62px;
        height: 28px;
        padding: 0;
        align-items: center;
        justify-content: center;
        display: flex;
        font-size: 7px;
        font-size: 1vw;
    }
    footer .holder ul {
        width: 50px;
        margin-top: 20px;    
    }
    footer .holder .li a {
        width: 14px;
        height: 14px;
    }
    footer .holder .twi a {
        width: 14px;
        height: 14px;
    }
    footer .holder .fb a {
        width: 14px;
        height: 14px;
    }
    footer > div > .secondMenu {
        margin-left: -65px;
    }
    footer > div > .secondMenu li a {
        font-size: 6.5px;
        margin-bottom: 9px;
    }
    footer > div > .secondMenu li:first-child a {
        margin-bottom: 13px;
    }
    footer > span {
        font-size: 1vw;
        margin-top: 14px;
    }
}
@media (max-width: 1420px) {
    .siteSearch .inner > p {
        width: 70%;
    }
}
@media (max-width: 1220px) {
    .howItWorks > div .btns {
        display: flex;
        flex-flow: column nowrap;
    }
    .howItWorks > div .btns a:first-child {
        margin-right: 0;
        margin-bottom: 10px;
    }
}
@media (max-width: 1280px) {
    .howItWorks > div h1 {
        font-size: 2.8vw;
        line-height: 40px;
    }
}
@media (max-width: 1120px) {
    .hero .demoInput {
        margin: 0;
    }
}
@media (max-width: 900px) {
    .demoHolder {
        margin-bottom: 50px;
    }
    #warningAlert {
        top: -60px;
        left: 50%;
        width: fit-content;
        text-align: center;
        transform: translateX(-50%);
    }
    #warningAlert p {
        text-align: center;
        width: 100%;
    }
    .ecomExperience {
        padding: 60px 0 0;
    }
    .ecomExperience .inner > div {
        width: 32%;
    }
    .ecomExperience .withText p {
        width: 100%;
    }
    .ecomExperience .withImg {
        display: none;
    }
    .ecomExperience .lg {
        display: none;
    }
    .ecomExperience .sm_md {
        display: block;
        margin: 0 auto;
    }
}
@media (max-width: 865px) {

    .partOfUs-container {
        width: 390px;
    }

    .partOfUsImgs{
        width:95px;
    }
    .img-partOfUs {
        width: 90px;
        margin: 20px;
    }
    .howItWorks > div {
        flex-flow: column nowrap;
        height: auto;
        margin: 0;
    }
    .howItWorks > div h1 {
        width: 70%;
        margin: 0 auto;
        text-align: center;
    }
    .howItWorks > div img {
        margin: 20px 0;
    }
    .feedback .cards {
        flex-flow: column nowrap;
    }
    .feedback .card {
        width: 100%;
        margin-bottom: 40px;
    }
}
@media (max-width: 789px) {
    .article {
        opacity: 1;
        transform: translate(0, 0);
    }
    header {
        top: 0;
        position: fixed;
        width: 100%;
        padding: 9px 30px;
        z-index: 99999;
        background-color: #fff;
        align-items: center;
        border-bottom: 1px solid #f4f4f4;
    }
    header .headerBlock {
        width: 100%;
        align-items: center;
    }
    header img {
        width: 13vh;
    }
    header h4 {
        font-size: 24px;
        line-height: 30px;
    }
    header .deskTopMenu {
        display: none !important;
    }
    header .mobTopMenuBtn {
        display: block;
        width: 4vh;
        height: 3vh;
        background-color: transparent;
        background: url('../img/menuBtn.png') no-repeat;
        background-size: contain;
    }
    header .mobTopMenu {
        display: block;
        position: absolute;
        width: 100%;
        height: auto;
        top: 58px;
        right: 0;
        background-color: #fff;
        border-bottom: 10px solid #ffba41;
    }
    header .hidden {
        display: none !important;
    }
    header .mobTopMenu ul {
        width: 100%;
        padding: 35px;
        flex-flow: column;
    }
    header .mobTopMenu > ul > li > a {
        display: block;
        font-size: 20px;
        margin-bottom: 44px;
    }
    header .mobTopMenu > ul > li:last-child > a {
        margin-bottom: 25px;
        position: relative;
    }
    header .mobTopMenu ul ul {
        padding: 0 33px;
        margin-bottom: 20px;
    }
    header .mobTopMenu ul ul li a {
        display: block;
        font-size: 18px;
        font-weight: 400;
        margin-bottom: 25px;
    }

    .hero {
        padding-top: 80px;
    }
    .hero .inner {
        margin: 0;
        padding: 20px 20px 0;
    }
    .hero .demoInput {
        margin: 0;
        width: 70%;
    }
    .hero .demoInput::after {
        width: 17vw;
        height: 8vw;
        right: -14vw;
    }
    .hero .demoInput input {
        width: 100%;
        height: 8vw;
        font-size: 4vw;
    }
    .hero .demoInput::before {
        width: 4vw;
        height: 4.5vw;
        top: 2vw; 
    }
    .hero .demoInput .roundArrBtn {
        width: 6.5vw;
        height: 6.5vw;
    }
    .hero .demoInput:focus-within::after {
        right: -19vw;
    }
    .hero .demoInput:focus-within .roundArrBtn {
        background-size: 4vw;
    }
    .partOfUs .inner p {
        font-size: 8vw;
    }
    .partOfUs .inner > div img {
        margin-bottom: 30px;
    }
    .siteSearch {
        border-top-left-radius: 250px;
        border-bottom-left-radius: 250px;
    }
    .siteSearch .inner {
        padding: 20% 10px;
    }
    .siteSearch .options {
        grid-template-areas:
        'ac ac'
        'sc sc'
        'an an'
        'mb mb';
    }
    .siteSearch .inner p {
        width: 100%;
    }
    .siteSearch .options::before {
        display: none;
    }

    .yourDomain img {
        width: 14vw;
    }
    
    footer {
        display: none !important;
    }
    .footerMob {
        width: 100%;
        display: flex;
        padding: 4vh 7vh;
        text-align: center;
        flex-flow: column nowrap;
    }
    .footerMob > div {
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
    }
    .footerMob > ul {
        display: flex;
        width: 91px;
        margin-top: 4vh;
        align-self: center;
        flex-flow: row nowrap;
        justify-content: space-between;
    }
    .footerMob > div > a {
        display: block;
        text-decoration: none;
        text-align: center;
        width: 32vw;
        height: unset;
        background-color: #FEBA3F;
        color: #000000;
        font-family: 'Helvetica Neue', 'Liberation Bold', Arial, Helvetica, sans-serif;
        font-size: 14px;
        font-weight: bold;
        text-align: center;
        padding: 1.5vh 0;
        text-transform: uppercase;
        border-radius: 3px;
        border-color: #FEBA3F;
        outline: 0;
        border: 2px solid #FEBA3F;
        transition: 0.25s;
    }
    .footerMob > div > a:hover,
    .footerMob > div > a:focus {
        background-color: #fff;
        /* box-shadow: inset -66px 0 0 0 #fff, inset 66px 0 0 0 #fff; */
    }
    footer > span, .footerMob > span {    
        line-height: 17px;
    }
    .footerMob span {
        line-height: 2.6vh;
        font-size: 1.9vh;
        margin-top: 2vh;
    }
    #websiteFrameH1 {
        padding-top: 2em;
    }
    .howItWorks {
        margin-bottom: 40px;
    }
    .howItWorks > div h1 {
        font-size: 30px;
        line-height: 40px;
    }

    .ecomExperience .inner > div {
        width: 49%;
    }
    .ecomExperience .withImg {
        display: none;
    }
    .ecomExperience .lg {
        display: none;
    }
    .ecomExperience .sm_md {
        display: block;
        margin: 0 auto;
    }
    .ecomExperience .withBtn a:hover,
    .ecomExperience .withBtn a:focus {
        background-color: #fff;
    }
}
@media (max-width: 580px) {
    #warningAlert {
        top: -50px;    
    }
    .hero .demoInput {
        width: 100%;
    }
    .hero .demoInput input {
        height: 50px;
        font-size: 22px;
        padding: 12px 50px;
    }
    .hero .demoInput::after {
        display: none !important;
    }
    .hero .demoInput::before {
        width: 26px;
        height: 30px;    
        top: 12px;
    }
    .hero .demoInput .roundArrBtn {
        width: 40px;
        height: 40px;
    }
    .yourDomain .inner {
        flex-flow: column nowrap;
        align-items: center;
    }
    .yourDomain .inner .inputHolder {
        width: 100%;
        margin-bottom: 15px;
    }
    .yourDomain img {
        display: none;
    }
    .ecomExperience {
        padding: 10px 0;    
    }
    .ecomExperience .inner > div {
        width: 100%;
        margin-bottom: 20px;
    }
    .ecomExperience .withText h1 {
        font-size: 9vw;
        line-height: 10vw;    
    }
    .ecomExperience .card {
        width: 80% !important;
        margin: 0 auto;
    }
    .ecomExperience .card p {
        font-size: 24px;
    }
    .ecomExperience .sm_md {
        width: 80% !important;
        padding: 0 !important;
    }
    .feedback {
        padding-bottom: 0;
    }
    .ecomExperience .withBtn a:hover,
    .ecomExperience .withBtn a:focus {
        background-color: #fff;
    }
}
@media (max-width: 515px) {
    .demoHolder {
        width: 100%;
    }
    .hero .demoInput::before {
        width: 26px;
        height: 30px;
        top: 12px !important;  
    }
    #warningAlert {
        top: -60px;    
    }
    .ecomExperience .card {
        width: 80% !important;
        margin: 0 auto;
    }
    .ecomExperience .sm_md {
        width: 80% !important;
    }
}
@media (max-width: 414px) {
    #click_hand {
        bottom: 2rem;
    }
    .hero .demoInput::before {
        width: 26px;
        height: 30px;
        top: 12px !important;  
    }
}

