
:root{

/*colors*/
--colorBgGray:#F1F6F8;
--colorTextGray:#B1AAAA;
--colorTextDarkGray:#787878;
--colorBlue:#034EA2;
--colorLightTextBlue:#7B92AB;
--colorBlack:#393939;
--colorBorder: #DEDEDE;
--colorWhite:#FFF; 
--colorDrakBlue:#034084;
--colorHoverBlue:#023773; 
--colorWhiteTransparent:rgba(255,255,255,0.3); 
--colorWhiteTransparent9:rgba(255,255,255,0.9); 

--colorFeaturesIcon:#F8F8F8;
--colorStoriBorder:#E1E1E1;
--colorSkyBlue:#5ECDFF;

--colorLightBlueTxt:#96ACC5;


}




@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.eot');
    src: url('../fonts/Roboto-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Roboto-Bold.woff2') format('woff2'),
        url('../fonts/Roboto-Bold.woff') format('woff'),
        url('../fonts/Roboto-Bold.ttf') format('truetype'),
        url('../fonts/Roboto-Bold.svg#Roboto-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}




@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Medium.eot');
    src: url('../fonts/Roboto-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Roboto-Medium.woff2') format('woff2'),
        url('../fonts/Roboto-Medium.woff') format('woff'),
        url('../fonts/Roboto-Medium.ttf') format('truetype'),
        url('../fonts/Roboto-Medium.svg#Roboto-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.eot');
    src: url('../fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Roboto-Regular.woff2') format('woff2'),
        url('../fonts/Roboto-Regular.woff') format('woff'),
        url('../fonts/Roboto-Regular.ttf') format('truetype'),
        url('../fonts/Roboto-Regular.svg#Roboto-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Light.eot');
    src: url('../fonts/Roboto-Light.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Roboto-Light.woff2') format('woff2'),
        url('../fonts/Roboto-Light.woff') format('woff'),
        url('../fonts/Roboto-Light.ttf') format('truetype'),
        url('../fonts/Roboto-Light.svg#Roboto-Light') format('svg');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}



*, *:before, *:after{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

ul, li{
    list-style: none;
    padding: 0px;
    margin: 0px;
}

a, a:hover{
    text-decoration: none;
}

html, body{
  height: 100%;
}
html {
  scroll-behavior: smooth;
}

body{font-family: 'Roboto'; color:var(--colorLightTextBlue); font-weight: normal; }
.contentHolder{ overflow: hidden; }
/*header*/


header{
 background-color: var(--colorWhite);
 border-bottom: solid 1px var(--colorBorder);
 padding: 15px 0;
 position: fixed;
 width: 100%;
 z-index:6;
}

header .gridcoll-12{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/*logoBox*/

.logoBox img{ width: 180px; }
  
/*menuBox*/
header .MenuBox{  }
header .MenuBox ul{ display: flex; }
header .MenuBox ul li{ padding: 0 15px; position: relative;  }
header .MenuBox ul li.mobileMenuItem{ display: none; }
.mobileMenuBox{ display: none; }
header .MenuBox ul li.haveSubmenu{ background:url(../images/menuDropDownArrow.svg) no-repeat; background-position: center right 10px; padding-right: 35px;  }
header .MenuBox ul li a{ font-size: 16px; font-weight: 500; color: var(--colorTextDarkGray); line-height: 19px; text-transform: uppercase;
transition: all 0.5s ease;     }

header .MenuBox ul li a:hover, header .MenuBox ul li.haveSubmenu.openMenu a,
header .MenuBox ul li.active a{ color: var(--colorBlue); }
header .MenuBox ul li.haveSubmenu.openMenu .subMenuBox{ display: block; }
header .MenuBox .subMenuBox{ display: none; position: absolute; top: 100%; left: 0px;  background-color: var(--colorWhite); border:solid 1px var(--colorBorder);
border-radius:5px;
-webkit-border-radius:5px;
-moz-border-radius:5px;

box-shadow: 0 0 5px rgba(0,0,0,0.1);
-webkit-box-shadow: 0 0 5px rgba(0,0,0,0.1);
-moz-box-shadow: 0 0 5px rgba(0,0,0,0.1);

margin-top: 15px;
min-width: 250px;

  }

header .MenuBox .subMenuBox.megaMenuBox{ min-width: 780px; }


.menuFeaturesItemBox{ padding: 25px; display: flex; justify-content: space-between; align-items: stretch; }
.menuFeaturesItemBox .menuFeaturesPointItem,
.menuFeaturesItemBox .menuFeaturesComingSoon{ flex-grow: 1; }
.menuFeaturesItemBox .menuFeaturesPointItem{ width: 100%; padding: 0 15px; }
.menuFeaturesItemBox .menuFeaturesComingSoon{  width: 35%; padding: 0 15px;}

.menuFeaturesItemBox .menuFItemRow{ display:  flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
.menuFeaturesItemBox  .menuFeaturesItemTitle{ width: 100%; border-bottom: solid 1px var(--colorBorder);
    padding-bottom: 15px;
    font-size: 24px;
    font-weight: bold;
    color: var(--colorBlack); 
    margin-bottom: 15px;
  }
.menuFeaturesItemBox .menuFeaturesItemList{ width: 48%; margin-bottom: 15px; }
.menuFeaturesItemBox .menuFeaturesItemList .titleBox{ font-size: 18px;  font-weight: bold;  color: var(--colorBlack); line-height: 26px; text-transform: capitalize;}
.menuFeaturesItemBox .menuFeaturesItemList .infoTxt{font-size: 16px;   font-weight: normal; color: var(--colorTextGray); line-height: 24px; text-transform: capitalize;}
.menuFeaturesItemBox .menuFeaturesItemList a{ text-transform: uppercase; display: block; }

.menuFeaturesItemBox .menuFeaturesComingSoon .menuFeaturesItemList{ width: 100%; }



header .MenuBox .subMenuBox li{ border-bottom: solid 1px rgba(0,0,0,0.05); padding: 10px 15px; transition: all 0.5s ease;   }
header .MenuBox .subMenuBox li:first-child{
border-radius:5px 5px 0 0;
-webkit-border-radius:5px 5px 0 0;
-moz-border-radius:5px 5px 0 0;
}
header .MenuBox .subMenuBox li:last-child{
    border-radius:0 0 5px 5px ;
-webkit-border-radius:0 0 5px 5px ;
-moz-border-radius:0 0 5px 5px ;
}

header .MenuBox .subMenuBox li:hover{ background-color:var(--colorBlue);  }
header .MenuBox .subMenuBox li a{ white-space: nowrap; text-transform: capitalize;  }
header .MenuBox .subMenuBox li:hover a{color: var(--colorWhite); }




.arrow-top {
  margin-top: 40px;
}

.arrow-top:after {
  content: " ";
  position: absolute;
  left:  30px;
  top: -15px;
  border-top: none;
  border-right: 13px solid transparent;
  border-left: 13px solid transparent;
  border-bottom: 15px solid  var(--colorWhite);

}

.arrow-top:before {
  content: " ";
  position: absolute;
  left:  30px;
  top: -15px;
  border-top: none;
  border-right: 14px solid transparent;
  border-left: 13px solid transparent;
  border-bottom: 13px solid  var(--colorBorder);

}



/*bookDemo*/

.bookDemo{background-color: var(--colorBgGray); display: flex; justify-content: space-between;
    border-radius:55px;
-webkit-border-radius:55px;
-moz-border-radius:55px;
padding: 5px;

}

.bookDemo span{ font-size: 15px; color: var(--colorBlue);  margin-left: 27px; margin-right: 45px; line-height:18px; text-transform: uppercase; display: flex;

justify-content: center;
align-items: center;  }
.bookDemo span a, .bookDemo span a:focus, .bookDemo span:hover{ 
color: var(--colorBlue); }
.bookDemo .bookDemoBtn{ background-color: var(--colorBlue); 
    border-radius:55px;
-webkit-border-radius:55px;
-moz-border-radius:55px;
color: var(--colorWhite);
font-size: 18px;
height: 44px;
line-height: 22px;
min-width: 213px;
display: flex;

justify-content: center;
align-items: center;
transition: all 0.5s ease;
font-weight: normal;
 }
.bookDemo .bookDemoBtn img{ margin-left: 18px; }

.bookDemo .bookDemoBtn:hover{
    background-color: var(--colorHoverBlue);
}



/*signInandSignUp*/

.signInandSignUp{}
.signInandSignUp ul{ display: flex; justify-content: flex-end; align-items: center; }
.signInandSignUp ul li:first-child{   position: relative; padding-right: 16px;   }
.signInandSignUp ul li:first-child:after{
    content: "";
    background: var(--colorTextDarkGray);
    width: 1px;
    height: 14px;
    position: absolute;
    bottom: 3px;
    right: 7px;

      transform: rotateZ(20deg);

}

.signInandSignUp ul li a{ font-size: 16px; color: var(--colorBlue); font-weight: 500; text-transform: uppercase; }


/*banner*/

.banner{  padding-top: 90px; position: relative; }
.rightShape{      position: absolute;    top: -270px;    right: 0px;    left: -240px;    bottom: 0px;}
.rightShape svg{filter: blur(50px); -webkit-filter: blur(50px); }


.banner .bannerImgBox img{ max-width: 100%; }

.homepageVideoBox{ position: relative;     max-width: 479px;  margin: 35px auto 35px; }
.homepageVideoBox img{ max-width: 100%; }
.homepageVideoBox video{     position: absolute; top: 22px; bottom: 0px; left: 20px; right: 21px; border: none; max-width: 91%; height: 93%;
    border-radius: 20px;}
/*bannerTxtHolder*/

.bannerTxtHolder{}
.bannerTxtHolder .winEveryTxt{ font-size: 50px; color: var(--colorBlack); font-weight: bold; margin-bottom: 15px; }
.bannerTxtHolder .customerinteractionTxt{ font-size: 80px; color: var(--colorBlack); font-weight: bold; position: relative; }
.bannerTxtHolder .customerinteractionTxt span{ color: var(--colorBlue);}
.bannerTxtHolder .customerinteractionTxt .shapeHeadngbanner{ position: absolute;     top: -45px;  right: -15px;     pointer-events: none; }
.bannerTxtHolder .infoTxt p{     font-size: 18px;  margin-bottom: 20px;  line-height: 30px; color: var(--colorBlack); text-align: justify; }
.bannerTxtHolder .infoTxt p span{ font-weight: bold; color: var(--colorBlue); }
.bannerTxtHolder .rkBtn{     margin-top: 25px;  margin-bottom: 35px; }
.bannerTxtHolder .infoTxt p.firstlinle{ font-size: 26px;  }

.bannerTxtHolder .bannercontactBox{}
.bannerTxtHolder .bannercontactBox ul li { margin-bottom: 21px; padding-left: 41px;      padding-bottom: 5px;}
.bannerTxtHolder .bannercontactBox ul li a{  font-size: 18px; color: var(--colorBlue); line-height: 100%; }

.bannerTxtHolder .bannercontactBox ul li.callIconBox{ background:url(../images/call_icon.svg) no-repeat; background-position: center left;  }
.bannerTxtHolder .bannercontactBox ul li.mailIconBox{ background:url(../images/mail_icons.svg) no-repeat; background-position: center left;  }



.BannerShape.shapeCircleYellow{ width: 14px; height: 14px;top: 110px;  left: 31%;     pointer-events: none;}
.BannerShape.shapeCircleBlue{ width: 16px; height: 16px;    top: 140px;   left: 13%;     pointer-events: none;}
.BannerShape.shapeSquareBlue{ width: 21px; height: 21px;    top: 380px;   left: 2%; background-size: 100%;     pointer-events: none;}
.BannerShape.shapeSquareBlue2{ width: 13px; height: 13px;    top: 650px;   left: 38%; background-size: 100%;     pointer-events: none;}

.dotWithColor{ width: 376px; height: 376px;overflow: hidden; display: flex; justify-content: flex-start; align-items: center;     position: absolute;
    bottom: -250px;  pointer-events: none; }
.dotWithColor img{     margin-left: -200px; height: 125px; }
.dotWithColor svg{ position: absolute; left: -20%;     filter: blur(50px);  -webkit-filter: blur(50px);     width: 100%; }




/*featuresAndBenefitsBox*/

.featuresAndBenefitsBox{  margin-top: 0px;  position: relative;}
.featuresAndBenefitsBox .mainTitle .polygonBlue{ width: 135px; height: 118px;  top: -80px; left: 5%;  background-size: 100%;  }
.featuresAndBenefitsBox .mainTitle .polygonBlue svg{  filter: blur(8px);  -webkit-filter: blur(8px);}
.featuresAndBenefitsBox .shapeCircleYellow {    top: 0;  right: 10%; width: 48px; height: 48px; left: inherit; background-size: 100%;}
.allFeatures{  width: 185px; height: 36px; background: var(--colorWhite) url('../images/seeAllFeaturesArrow.svg') no-repeat;
background-position: center right 16px;
border:  solid 1px var(--colorBlue);
border-radius: 55px;
-webkit-border-radius: 55px;
-moz-border-radius: 55px;
padding:7px 28px 7px 18px; 
display: flex;
justify-content: center;
align-items: center;
margin: 0px auto 35px;
cursor: pointer;
transition:all 0.5s; 
 }
.allFeatures a{ font-size: 18px; color: var(--colorBlue); white-space: nowrap;  }
.allFeatures:hover{ font-size: 18px; background: var(--colorBlue) url('../images/seeAllFeaturesArrowWhite.svg') no-repeat;  background-position: center right 16px; }
.allFeatures:hover a{ color: var(--colorWhite);}
.featuresItemBox{ margin-top: 35px;  position: relative;  padding-bottom: 135px;}
.featuresItemBox .featuresItem{ background-color:var(--colorWhiteTransparent);
  border-radius: 25px;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
padding: 60px 54px;

display: flex;
justify-content: space-between;
align-items: center;

box-shadow: 0 0 10px rgba(3,78,162,18%);

  }

.featuresItemBox .featuresItem .infoPart,
.featuresItemBox .featuresItem .infoIconPart{
   flex-grow: 1;
}
.featuresItemBox .featuresItem .infoPart{ max-width: 570px; margin-right: 18px; }
.featuresItemBox .featuresItem .infoIconPart{ min-width:  194px; }
.featuresItemBox .featuresItem .infoIconPart .featuresItemIconBox{ max-width: 194px; width: 100%; min-width: 194px; 
background-color: var(--colorFeaturesIcon);
  border-radius: 25px;
-webkit-border-radius: 25px;
-moz-border-radius: 25px;
padding: 43px 55px;
  }



.featuresItemBox .featuresItem .titleBox{ font-size: 30px; font-weight: bold; text-transform: uppercase; margin-bottom: 15px; color: var(--colorBlue);
line-height: 37px; }
.featuresItemBox .featuresItem .titleBox img{ margin-left: 14px; }
.featuresItemBox .featuresItem .infoTxt p{ font-size: 24px; line-height: 29px; color: var(--colorLightTextBlue); font-weight: normal; }

.featuresItemBox .gridRow{ margin-bottom: 42px; margin-left: -21px; margin-right:  -21px;  align-items:  stretch;}
 .featuresItemBox .gridRow:last-child{ margin-bottom: 0px; }

.featuresItemBox .gridRow [class*="gridcoll-"]{ padding-right: 21px; padding-left: 21px; }



.featuresItemBox .leftColorBox{     position: absolute;
    right: 20%;
    top: -130px;
    z-index: -1; pointer-events: none;}
.featuresItemBox .leftColorBox svg{  filter: blur(50px);  -webkit-filter: blur(50px); }


.featuresItemBox .rightColorBox{ position: absolute; right:  -5%; bottom:  -8% ;     z-index: -1;}
.featuresItemBox .rightColorBox svg{  filter: blur(35px);  -webkit-filter: blur(35px); }

.featuresItemBox .dotBottomfull{  position: absolute; right: 0px; bottom: 0px; }


.featuresItemBox .rightCircalColorBox{ position: absolute; right:  -5%; top:  15% ;     z-index: -1;}
.featuresItemBox .rightCircalColorBox img{  filter: blur(5px);  -webkit-filter: blur(5px); opacity: 0.5; }

.featuresItemBox .leftSquareBlueBox{     position: absolute;
    left: -2%;
    bottom: 0%;
    width: 160px;
    height: 220px;
    z-index: -1;
    pointer-events: none;
  }
.featuresItemBox .leftSquareBlueBox img{  opacity: 0.4;  width: 100%;}

/*reviewKeepAdvantagesItem*/

.reviewKeepAdvantagesItem{ background-color: var(--colorWhite);  
  box-shadow: 0 15px 39px rgba(3,78,162, 0.14); 
  -webkit-box-shadow: 0 15px 39px rgba(3,78,162, 0.14);
  -moz-box-shadow: 0 15px 39px rgba(3,78,162, 0.14);

  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;

  padding: 50px;
  margin-bottom: 0px;
  height: 100%;
}

.reviewKeepAdvantagesItem .reviewKeepAdvantagesItemHeader{ display: flex; justify-content: flex-start; align-items: center; margin-bottom: 40px; }
.reviewKeepAdvantagesItem .reviewKeepAdvantagesItemHeader .ItemiconBox{ width: 140px; height: 140px;
 border-radius: 100px; 
 -webkit-border-radius: 100px;
-moz-border-radius: 100px;
background-color: var(--colorBgGray);

display: flex;
justify-content: center;
align-items: center;
margin-right: 25px;
}
.reviewKeepAdvantagesItem .reviewKeepAdvantagesItemHeader .ItemTitleBox{ font-size: 26px; font-weight: bold; color: var(--colorBlue); }
.reviewKeepAdvantagesItem .reviewKeepAdvantagesItemHeader .ItemiconBox img{ max-width: 65px; }

.reviewKeepAdvantagesItem .reviewKeepAdvantagesItemBody p{ font-size: 18px; line-height: 32px; font-weight: normal; }




/*successStories*/

.successStories{ margin-top: 0px; }
.successStories .titleTwoline{ font-size: 60px; font-weight: bold; color: var(--colorBlack); }
.successStories .titleTwoline span{ font-size:90px; font-weight: bold; color: var(--colorBlue); display: block; width: 100%;    line-height: 80px; }
.successStories .successStoriesSummery p{ line-height: 32px; font-size: 24px; }
.successStories .rightSidetxt img{     vertical-align: sub;  }
.successStories .rightSidetxt { position: relative; font-size: 28px; color: var(--colorBlack);  }
.successStories .rightSidetxt:after{ width: 36%; content: ""; right: 0px; bottom: -15px; height: 7px; background-color: var(--colorBlue); display: block; position: absolute; } 


.successStoriesItemBox .gridcoll-12{ display: flex; justify-content: space-between; align-items: stretch; flex-wrap: wrap; }
.successStoriesItemBox .successStoriesItem{ width: 33%; }

.successStoriesItemBox .successStoriesItem .storiesImgBox{ display: flex; justify-content: center;  align-items: center; }
.successStoriesItemBox .successStoriesItem .storiesImgBox .storiesImgBoxHolder{ width: 305px; height: 230px; border-radius: 55px;
-webkit-border-radius: 55px;
-moz-border-radius: 55px;
position: relative;
display: flex;
justify-content: center;
align-items: center;
 }

.successStoriesItemBox .successStoriesItem .storiesImgBox .storiesImgBoxHolder .bgImgBox{ position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  filter: blur(50px);  -webkit-filter: blur(50px);
  width: 100%;


  }
.successStoriesItemBox .successStoriesItem .storiesImgBox .storiesImgBoxHolder .logoImg{
  max-width: 100%;
}

.successStoriesItemBox { margin-top: 80px;  position: relative; background-color: var(--colorWhite);   border-radius: 30px;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;}
.successStoriesItemBox .successStoriesItem { text-align: center; border-right: solid 1px var(--colorStoriBorder); padding: 50px; }
.successStoriesItemBox .successStoriesItem:last-child{ border-right: none; }
.successStoriesItemBox .successStoriesItem .storiesTxtBox .storiesTitle{ font-size: 40px; font-weight: bold; color: var(--colorLightTextBlue); }
.successStoriesItemBox .successStoriesItem .storiesTxtBox .storiesSubTitle{font-size: 31px; font-weight: normal; color: var(--colorLightTextBlue); }
.successStoriesItemBox .successStoriesItem .storiesTxtBox .storiesInfo{ text-align: left;  margin-top: 43px;}
.successStoriesItemBox .successStoriesItem .storiesTxtBox .storiesInfo p{ font-size: 18px; font-weight: normal; line-height: 32px; }


.successStoriesItemBox .storiBGShape{ position: absolute; left: -30%;  top: -160px; z-index: -1;  }

.successStoriesItemBox .storiBGShape img{ filter: blur(50px);  -webkit-filter: blur(50px); }

/*whyNeedReviews*/

.whyNeedReviews{ margin-top: 148px;  position: relative;}
.whyNeedReviews .summeryBox{ position: relative; margin-bottom: 70px; }
.whyNeedReviews .summeryBox p{ font-size: 24px;     line-height: 32px; }
.whyNeedReviews .reviewDotsBg{ position: absolute; right: 0px; bottom: -217px; }

.whyNeedReviews .whyNeedReviewsDetail{ max-width: 1177px; margin-left: 350px; width:calc( 100% - 350px) ; position: relative;   }
.whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsDetailHolder{background-color: var(--colorWhiteTransparent9); 
  box-shadow: 0 15px 39px rgba(3, 78, 162, 0.2);
  -webkit-box-shadow: 0 15px 39px rgba(3, 78, 162, 0.2);
  -moz-box-shadow: 0 15px 39px rgba(3, 78, 162, 0.2);

  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
padding: 52px ;
    position: relative;
    z-index: 2;
margin-bottom: 70px;}
.whyNeedReviews .whyNeedReviewsDetail p{ margin-bottom: 40px; line-height: 32px; font-size: 18px font-weight: normal;  }
.whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsDetail-info p{ font-size: 18px; line-height: 36px;  font-weight: normal; }
.whyNeedReviews .whyNeedReviewsDetail p:last-child{ margin-bottom: 0px; }
.whyNeedReviews .whyNeedReviewsDetail p sup{    line-height: 12px;
    height: 15px;
    position: relative;
    top: 3px;
    font-size: 24px; }



.whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsDetail-ItemList{ padding-left: 119px; padding-right: 33px; }
.whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsDetail-ItemList .infoHolderBox{ margin-bottom: 28px;  }
.whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsDetail-ItemList .infoHolderBox img{ margin-bottom: 15px; }

.whyNeedReviews .whyNeedReviewsBg{ position: absolute;
    left: -20%;
    top: 20%;
    z-index: -1;
    width: 50%;
    pointer-events: none;
     }
.whyNeedReviews .whyNeedReviewsBg img{filter: blur(50px);  -webkit-filter: blur(50px); width: 100%;}


.whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsMobileImg{ position: absolute; left: -320px;     bottom: 0;  z-index: 1; }
.whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsGirlImg{ position: absolute;     right: -140px;  bottom: 7px; z-index: -1; }






/*GetStarted*/


.GetStarted{ padding-top: 70px; position: relative; }
.GetStarted .planBoxRow:first-child{ margin-top: 120px; }
.GetStarted .planBoxRow{ margin-bottom:  90px; }

.GetStarted .infoHolderpart{   margin-left: 190px; position: relative;}
.GetStarted .infoHolderpart .title{ font-size: 30px; font-weight: bold; color: var(--colorBlue); text-transform: uppercase; margin-bottom: 18px; }
.GetStarted .infoHolderpart .title a,
.GetStarted .infoHolderpart .title a:hover,
.GetStarted .infoHolderpart .title a:focus{color: var(--colorBlue); text-decoration: none;}
.GetStarted .infoHolderpart .infoText{  font-size: 18px;  max-width: 90%; line-height: 28px; }
.GetStarted .infoHolderpart .numberBox{ position: absolute; font-size: 237px; left: -160px;  top: -40px; color: var(--colorLightBlueTxt); }
.newImgBox img{ max-width: 100% }

.GetStarted  .planIconBox{     width: 332px;
    height: 264px;
border-radius: 30px;
-webkit-border-radius: 30px;
-moz-border-radius: 30px;
padding:67px 106px; 

box-shadow: 0 15px 39px rgba(3,78, 162, 0.15); 
position: relative;
z-index: 2;
background-color: var(--colorWhite);
 }
.GetStarted  .planIconBox img{ width: 117px; }
.GetStarted .planiconHolder{
   position: relative;
}


.GetStarted  .planBoxRow:nth-child(even) .planIconDotImg{ position: absolute; content: ""; background:url(../images/planDotBg.svg) no-repeat; width: 343px; height: 145px;   
 right: 65px; bottom: -54px;    z-index: 1;  }
    .GetStarted  .planBoxRow:nth-child(odd) .planIconDotImg{ position: absolute; content: ""; background:url(../images/planDotBg.svg) no-repeat; width: 343px; height: 145px;    left:  -30px;
    top: -48px;    z-index: 1;  }
.GetStarted  .planBoxRow:nth-child(odd) .infoHolderpart {    justify-content: flex-end;   display: flex;  text-align: right;      margin-right:  190px;     margin-left:0px;}
.GetStarted  .planBoxRow:nth-child(odd) .infoHolderpart .numberBox{ left: inherit; right: -160px; }

.GetStarted .getstartleft{ position: absolute; left: 0px; top:510px; z-index: -1; opacity: 0.8 ; width: 85%; pointer-events: none;}
.GetStarted .getstartleft img{ width: 100%; }
.GetStarted .getstartRight{     position: absolute;   right: -160px;  bottom: -300px;  z-index: -1;    opacity: 0.8; width: 64%; pointer-events: none;}

.GetStarted .summeryTxt p{  font-size: 24px; line-height: 39px; margin-bottom: 38px; }

.howitWorks{ display: inline-block; display: flex; justify-content: center; align-items: center; font-size: 30px; font-weight: bold; color: var(--colorBlue) }
.howitWorks img{  margin-left: 33px; }





/*clientsSayingBox*/

.clientsSayingBox{ margin--top: 163px; position: relative;  }




.clientsSayingBox {}

.clientsSayingBox .clientsSayingsliderPart{ position: relative; margin-top: 70px;     }
.clientsSayingBox .clientsSayingsliderPart .owl-stage-outer{    padding-bottom: 50px; min-height: 372px;}
.clientsSayingBox .clientsSayingsliderPart .inverted-commas{ position: absolute;  top: -115px; left: 0px; z-index: -1;}
.clientsSayingBox .clientsSayingsliderPart .bodyContainer{ position: relative; }


.clientsSayingBox .clientsSayingsliderPart .clientFeedback{
  background-color: #F8F9FB;


  border-radius: 30px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  padding: 60px 48px; 
}

.clientsSayingBox .clientsSayingsliderPart .starBox ul{ display: flex; justify-content: space-between; max-width: 155px; margin-bottom: 30px;}
.clientsSayingBox .clientsSayingsliderPart .starBox ul li{ width: 22px; height: 22px; background: url(../images/star-select.svg) no-repeat; }
.clientsSayingBox .clientsSayingsliderPart .starBox ul li.notSelect{  background: url(../images/star-notselect.svg) no-repeat;}

.clientsSayingBox .clientsSayingsliderPart .clientWord { margin-bottom: 15px;  min-height: 105px;}
.clientsSayingBox .clientsSayingsliderPart .clientWord p{ color: var(--colorTextGray); line-height: 26px; }

.clientsSayingBox .clientsSayingsliderPart .clientInfo{ display: flex; justify-content: flex-start; }
.clientsSayingBox .clientsSayingsliderPart .clientInfo .clientPicBox{ width: 77px; height: 77px; 
  border-radius: 100px; 
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  margin-right: 19px;
}
.clientsSayingBox .clientsSayingsliderPart .clientInfo .clientPicBox img{ width: 77px; height: 77px; object-fit: cover; }

.clientsSayingBox .clientsSayingsliderPart .clientInfo .aboutClient{
    box-shadow: 0 0 0px rgba(0,0,0,0.0); 
  -webkit-box-shadow: 0 0px 0px rgba(0,0,0,0.0);
  -moz-box-shadow: 0 0px 0px rgba(0,0,0,0.0);
   transition:all 0.5s ease; 
}

.clientsSayingBox .clientsSayingsliderPart .clientInfo .aboutClient .clientNameBox{ font-weight: bold; color: var(--colorBlack); font-size: 18px;  margin-bottom: 0px;}
.clientsSayingBox .clientsSayingsliderPart .clientInfo .aboutClient .clientpost{ font-weight: normal; color: var(--colorTextGray); font-size: 18px; }


.clientsSayingBox .clientsSayingsliderPart .clientFeedback:hover{  }
.clientsSayingBox .clientsSayingsliderPart  .clientFeedback:hover{ 
  box-shadow: 0 15px 39px rgba(0,0,0,0.2); 
  -webkit-box-shadow: 0 15px 39px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 15px 39px rgba(0,0,0,0.2);
  border:none; 
  
}

.clientsSayingBox .clientsSayingsliderPart  .clientFeedback{ position: relative;    transition:all 0.5s ease;  transform: translateY(0px);  }
.clientsSayingBox .clientsSayingsliderPart .clientFeedback:after{ content: "";
height: 10px; width: 50%;
position:absolute;
left: 25px;
bottom: 0px;
background-color: var(--colorBlue);
transition:all 0.5s ease; 
  border-radius: 100px; 
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;

  }

.clientsSayingBox .clientsSayingsliderPart .clientFeedback:hover:after{ width: calc( 100% - 45px) }

.clientsSayingBox .clientsSayingsliderPart  .clientFeedback:hover{ margin-top: 23px; background-color: var(--colorWhite);   box-shadow: 0 15px 39px rgba(0,0,0,0.2); 
  -webkit-box-shadow: 0 15px 39px rgba(0,0,0,0.2);
  -moz-box-shadow: 0 15px 39px rgba(0,0,0,0.2); }

  .clientsSayingBox .clientsSayingsliderPart .clientFeedback:hover{ transform: translateY(23px); background-color: var(--colorWhite);   box-shadow:0px 10px 20px  rgba(0,0,0,0.2); 
  -webkit-box-shadow:0px 10px 20px  rgba(0,0,0,0.2);
  -moz-box-shadow:0px 10px 20px  rgba(0,0,0,0.2); }

.moreAboutReviewKeep{ margin-top: 20px; }







/*moreAboutReviewKeep*/


.moreAboutReviewKeep {
  background: #0B62C4 url(../images/learn.png);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 55px 0 65px;
}

.moreAboutReviewKeep .titleBox{ font-size: 36px; font-weight: bold; color: var(--colorWhite); margin-bottom: 48px; }


/*startTrial*/

.startTrial{ padding: 54px 0; }
.startTrial .titleBox { font-size: 40px; font-weight: bold; color: var(--colorBlue); margin-right: 110px; }



/*fullWidthPage*/

.fullWidthPage{ min-height: 100%; width: 100%;  overflow: hidden; }

.fullWidthPage .fullWidthRow{ display: flex; justify-content: space-between; align-items: stretch;  min-height: 100vh; position: relative; }

.fullWidthPage .fullWidthRow .fullWidthLeft{ background: var(--colorWhite) ;  width: calc( 70% - 174px); margin-left: 174px;   }
.fullWidthPage .fullWidthRow .fullWidthLeft .backBtn{ position: absolute; top: 30px; left: 65px; z-index: 3; }
.fullWidthPage .fullWidthRow .fullWidthLeft .backBtn img{ margin-right:  15px; vertical-align: middle;  margin-top: -4px; }
.fullWidthPage .fullWidthRow .fullWidthLeft .backBtn a{ font-size: 18px; line-height: 22px; color: var(--colorBlue); }

.fullWidthPage .fullWidthRow .fullWidthLeft .formBox{ position: relative; z-index: 5; margin-top: 70px; }



.formAndListHolder .formBox {  max-width: 610px; width: 100%;}
.formAndListHolder .formBox .titleBox{ }
.formAndListHolder .formBox .formBody{ background-color: var(--colorWhite); padding: 33px; 
border: solid 1px var(--colorLightTextBlue); 
border-radius: 12px; 
-webkit-border-radius: 12px; 
-moz-border-radius: 12px;
margin-bottom: 50px;
}

.formBody .gridRow{    margin: 0 -10px;}
.formBody .gridRow [class*="gridcoll-"] {  padding: 0 10px;}

.formBody .formtitle{  font-size: 36px; font-weight: bold; color:var(--colorBlack); margin-bottom: 6px; }
.formBody p{ font-size: 16px; color: var(--colorTextGray); }
.formBody .allreadyAccountLink{ font-size: 18px; color: var(--colorTextDarkGray); margin-top: 10px; }
.formBody .allreadyAccountLink a{ color: var(--colorBlue); }


.fullWidthPage .fullWidthRow .fullWidthRight{width: 30%; position: relative; z-index: 5;}

.fullWidthPage .fullWidthRow .fullWidthRight img{ width: 100%; height: 100%; object-fit: cover; position: absolute; top: 0px; left: 0px; }


.fullWidthPage .fullWidthRow .registerBox{ position: absolute; bottom: -300px; left: -200px; z-index: 2;  }

.accountPolicy p{ font-size: 16px; color: var(--colorTextGray); }

.accountPolicy a{ color: var(--colorBlue); text-decoration: underline; }


.formAndListHolder .formBox,
.formAndListHolder .passwordList { flex-grow: 1;      position: relative;  z-index: 5;}

.formAndListHolder .passwordList .passwordInstraction{ max-width: 260px; margin: 0 auto; text-align: left; }
.formAndListHolder .passwordList .passwordInstraction h1{ font-size: 20px; font-weight: normal; margin-bottom: 15px; color:var(--colorBlack); }

.formAndListHolder .passwordList .passwordInstraction ul li{ font-size: 18px; font-weight: 300; line-height: 50px; background:url('../images/strongRightMark.svg') no-repeat; background-position: center left;
 padding-left: 35px;   }

.formAndListHolder .passwordList .passwordInstraction ul li.done{
  color: var(--colorTextGray);
  text-decoration: line-through;
  background:url('../images/dalRightmark.svg') no-repeat;  
   background-position: center left;
}


/*loginpage*/

.loginpage.fullWidthPage .fullWidthRow .fullWidthLeft {
    background: var(--colorWhite);
    width: 40%;
    margin-left: 100px;
}




.loginpage.fullWidthPage  .fullWidthRow .fullWidthRight {  width: 60%;}


.accountPolicy.inlineBox-center{ justify-content: center !important; }

.accountPolicy.inlineBox-center a{ margin: 0 15px; }

.loginpage.fullWidthPage  .loginbgimg{ position: absolute; top: 10px; bottom: 0px; left: 0px; right: 0px; object-fit: inherit !important;}



.loginpage.fullWidthPage .loginInfoText{ max-width: 843px; margin: 0 auto; position: relative; z-index: 5; margin-top: 80px; }

.loginpage.fullWidthPage .loginInfoText .subTitle{ color: var(--colorSkyBlue); font-size: 40px; font-weight: bold; line-height: 48px; }
.loginpage.fullWidthPage .loginInfoText .titleBox{color: var(--colorBlue); font-size: 76px; font-weight: bold; line-height: 91px;}

.loginpage.fullWidthPage .loginInfoText .pointList{ margin-top: 30px; }
.loginpage.fullWidthPage .loginInfoText .pointList ul{}
.loginpage.fullWidthPage .loginInfoText .pointList ul li{  background:url(../images/loginpoint.svg) no-repeat;  background-position: top left; 
padding-left: 35px; padding-bottom: 20px; padding-top: 7px; }

.loginpage.fullWidthPage .formBody{ margin: 17% 0; }


/*contentwrapper*/

.contentwrapper{
  min-height: 100vh;
  padding-top: 135px; 
}


/*billingContainer*/

.billingContainer{ max-width: 1362px; margin: 0 auto; padding: 0 15px; }




#addmoreaddress{ font-size: 16px; color: var(--colorBlue); text-decoration: underline; margin-top: 8px; }


.paymentBox{}
.paymentBox .cardDetailTitle{ font-size: 30px; font-weight: bold; color: var(--colorBlack); }

.paymentBox .cardDetailTitleRow{ margin-bottom: 15px; margin-top: 36px; }
.paymentBox .cardTypeRow { margin-bottom: 20px; }
.paymentBox .cardTypeRow .cardTypeRowTxt{ font-size: 23px; color: var(--colorBlue); position: relative; line-height: 37px; font-weight: bold;     display: inline-block; }
.paymentBox .cardTypeRow .cardTypeRowTxt:after{ 
content: "";
position: absolute;
bottom: 0px;
left: 0px;
height: 4px;
background-color: var(--colorBlue);
width: 100%;
 }



label a{ color: var(--colorBlue); text-decoration: underline; }


/*chooseSubscriptionBox*/

.chooseSubscriptionBox{}
.chooseSubscriptionBox .titleBox{ font-size: 24px; font-weight: bold; color: var(--colorBlack); text-transform: capitalize; }

.subscriptionSelecter{ margin-top: 20px;  }
.subscriptionSelecter label{ margin-right: 65px; font-size: 24px !important; color: var(--colorBlue); }

.planPoint{ margin-top: 30px; }
.planPoint .planPointTitle{ font-size: 24px; color: var(--colorBlack); margin-bottom: 33px; }

.planPoint  .planpointItem { margin-bottom: 29px; }
.planPoint  .planpointItem  ul{}
.planPoint  .planpointItem  ul li{ font-size: 16px; color: var(--colorTextDarkGray); line-height: 40px; background:url('../images/greeTick.svg') no-repeat;
background-position: center left; padding-left: 25px;  }

.planPoint  .planpointItem  ul li.noInPlan{ background:url('../images/redCros.svg') no-repeat; background-position: center left; color: #B8B8B8; text-decoration: line-through; }

.planValueBox{ padding:32px 0; border-top: solid 1px var(--colorBorder); border-bottom: solid 1px var(--colorLightBlueTxt);  margin-bottom: 102px; }
.planValueBox .planValueRow { margin-bottom: 20px; }
.planValueBox .totalBilledNow .planValueRow{ margin-bottom: 0px; } 


.planValueBox .totalBilledNow{  padding:32px 0 0; border-top: solid 1px var(--colorLightBlueTxt); margin-top: 20px; }
.planValueBox .totalBilledNow .planValidityTitle,
.planValueBox .totalBilledNow .planValidityvalue{ font-size: 18px; font-weight: bold; color: var(--colorBlack); }

.planValueBox .planValueInner .planValidityTitle { font-size: 16px; font-weight: bold; color: var(--colorTextDarkGray); }
.planValueBox .planValueInner .title { font-size: 16px; font-weight: normal; color: var(--colorTextDarkGray); }
.planValueBox .planValueInner .planValidityvalue { font-size: 16px; font-weight: normal; color: var(--colorBlack); }



.billingBottomImg{ margin-bottom: 45px; }
.billingBottomImg img{ max-width: 100%; }

/*innerBanner*/



.innerBanner{ padding-top: 150px; padding-bottom: 17px; }
.innerBanner .innerBannerImgBox{ position: relative; }
.innerBanner .innerBannerImgBox .bannerMainImg{     position: relative; z-index: 3; } 
.innerBanner .innerBannerImgBox .rokectbgImg{    position: absolute;
    top: -290px;
    width: 200%;
    z-index: 1;
    filter: blur(30px);
    -webkit-filter: blur(30px);
    left: -210px;
     }
.innerBanner .gridcoll-8{ position: relative; z-index: 5; }

.BannerTopBar{ margin-bottom: 57px; }
.BannerTopBar .textBox .titleBox{ font-size: 24px; color: var(--colorWhite); font-weight: normal; }
.BannerTopBar .textBox small{ font-size: 16px;  color: var(--colorWhite); opacity: 0.5; font-weight: normal; }

.BannerTopBar .searchBox{ max-width: 469px;     width: 100%; }
.BannerTopBar .searchBox .searchFormHolder{ width: 100%; position: relative; }
.BannerTopBar .searchBox .searchFormHolder .searchInput{ border:solid 1px #C3DAF1 !important; background-color: transparent; height: 58px;
border-radius: 9px;
-webkit-border-radius: 9px;
-moz-border-radius: 9px;

padding: 19px 173px 22px 19px;
width: 100%;
color: var(--colorWhite);
 }

.BannerTopBar .searchBox .searchFormHolder .submitBtn{  position: absolute; top: 0px; right: 0px; bottom: 0px;  background-color: var(--colorWhite);
  border: solid 1px var(--colorWhite);
border-radius: 9px;
-webkit-border-radius: 9px;
-moz-border-radius: 9px;
color:var(--colorBlue);
min-width: 142px;
text-align: center;
font-size: 20px;
font-weight: bold;
cursor: pointer;
}






.BannerBottomBar{}

.BannerBottomBar .titleBox{ font-size: 60px; font-weight: bold; color: var(--colorWhite);  margin-bottom: 25px; line-height: 72px;}

.BannerBottomBar .titleBox span{ color: var(--colorSkyBlue); }

.BannerBottomBar a{ font-size: 24px; color: var(--colorWhite); opacity: 0.4; text-decoration: underline; }





/*Plans Page*/

.tabBox .active{ display: block; }
.tabBox  .hide{ display: none; }



.plansTabs{ margin-top: 60px; position: relative;z-index: 5; }
.plansTabsBox .tabHeadBox{ margin-bottom: 80px; }
.plansTabsBox .tabHeadBox ul{ display: flex; justify-content: center; align-items: center; }

.plansTabsBox .tabHeadBox ul li a{ background-color: var(--colorWhite); border: solid 1px var(--colorBlue);  padding: 15px 58px; line-height: 70px; font-size: 24px; color: var(--colorBlack); }
.plansTabsBox .tabHeadBox ul li a span{ font-size: 18px;   color: var(--colorBlue); }
.plansTabsBox .tabHeadBox ul li a.activelink{ background-color: var(--colorBlue); color: var(--colorWhite);  border: solid 1px var(--colorBlue); }
.plansTabsBox .tabHeadBox ul li a.activelink span{ color: var(--colorWhiteTransparent); }
.plansTabsBox .tabHeadBox ul li a:active{   color: var(--colorBlue);}

.plansTabsBox .tabHeadBox ul li:first-child a{ 
  border-radius: 8px 0 0 8px; 
  -webkit-border-radius: 8px 0 0 8px; 
  -moz-border-radius: 8px 0 0 8px; 

}
.plansTabsBox .tabHeadBox ul li:last-child a{
    border-radius:  0 8px  8px 0; 
  -webkit-border-radius:  0 8px  8px 0; 
  -moz-border-radius:  0 8px  8px 0; 
}





.plansTabsBody{ max-width: 1450px; margin: 0 auto 88px; padding: 0 24px;  }
.plansTabsBody .gridRow{ margin: 0 -24px; align-items: stretch; }
.plansTabsBody .gridRow [class*="gridcoll-"]{padding: 0 24px;}


.plansTabsBody .planPriceTable{ 
  border: solid 1px var(--colorLightBlueTxt);
   border-radius: 8px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
    height: 100%;
padding-bottom: 295px; position: relative;
}

.planPriceTable .planPriceTableHead{ text-align: center; }
.planPriceTable .planPriceTableHead .planNameBox{ background:url(../images/planPriceHeaderBg.svg) no-repeat; 
background-position: top center; background-size: 100%;     min-height: 162px; padding: 56px 15px 0;  }
 .planPriceTable .planPriceTableHead .planNameBox .planTitle{ font-size: 30px; font-weight: bold; color: var(--colorBlue);
text-transform: uppercase;      letter-spacing: 5px;}
 .planPriceTable .planPriceTableHead .planNameBox .planSubTitle{ font-size: 24px; font-weight: normal; }


.planPriceTable .planPriceTableHead .planPriceBox{   }
.planPriceTable .planPriceTableHead .planPriceBox .planPriceBoxHolder{ display: inline-block;  font-size: 70px; line-height: 139px; color: var(--colorBlack); position: relative; }
.planPriceTable .planPriceTableHead .planPriceBox sub{ position: absolute;    top: 15px; left: -20px; font-size: 29px; line-height: 58px;}
.planPriceTable .planPriceTableHead .planPriceBox sup{ position: absolute;    bottom: 15px; right:  -50px; font-size: 29px; line-height: 58px; color: var(--colorLightTextBlue);}
.planPriceTable .planPriceTableHead .pricePlanNamesmall{ font-size: 18px; margin-bottom: 40px; }

.planPriceTable .planPriceTableHead .planGetStartedBtn .takePlanBtn{
  border: solid 1px var(--colorBlue);
  height: 60px;
  text-align: center;
  border-radius: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  min-width: 295px;

  font-size: 24px;
  color: var(--colorBlue);
  background-color: var(--colorWhite);
  cursor: pointer;
 transition:all 0.5s ease; 
 line-height: 29px;
padding: 15px;
display: inline-block;
}
.planPriceTable .planPriceTableHead .planPriceBox.monthOnly .planPriceBoxHolder,
.planPriceTable .planPriceTableHead .planPriceBox.monthOnly sub,
.planPriceTable .planPriceTableHead .planPriceBox.monthOnly sup{
  position: static;
  font-size: 22px;
      line-height: 30px;
      margin-bottom: 15px;
      color: var(--colorTextDarkGray);
}

.planPriceTable .planPriceTableHead .planPriceBox.monthOnly .subHedingBox{
color: var(--colorBlack);
    font-size: 26px;
    font-weight: bold;
        margin-top: 25px;
}

.planPriceTable .planPriceTableHead .planPriceBox.monthOnly span{ margin:0 3px; }

.planPriceTable .planPriceTableHead .planGetStartedBtn .takePlanBtn:hover{
  background-color: var(--colorBlue);
   color: var(--colorWhite);
}


.planPriceTable .planPriceTableBody{ margin-top: 60px; padding: 32px; }
.planPriceTable .planPriceTableBody .tryitout{ font-size: 24px; font-weight: bold; color: var(--colorTextDarkGray); text-transform: uppercase; text-align: center; margin-bottom: 20px; }

.planPriceTable .planPriceTableBody .planFeaturesList{ border-top:  solid 1px var(--colorLightBlueTxt);  }

.planPriceTable .planPriceTableBody .planFeaturesList ul li{ padding: 27px 0; border-bottom:  solid 1px var(--colorLightBlueTxt); font-size: 24px; font-weight: normal; color: var(--colorTextDarkGray);
background:url('../images/priceTick.svg') no-repeat; background-position:  left top 25px; padding-left: 35px;     line-height: 29px;  }


.planPriceTable .planBottom{ position: absolute; bottom: 52px; width: 100%; text-align: center; }



.planPriceTable.activePlan{ border-color: var(--colorBlue); border-width: 2px; }

.planPriceTable.activePlan  .planPriceTableHead .planGetStartedBtn .takePlanBtn{
   background-color: var(--colorBlue);
   color: var(--colorWhite);
}


.planPriceTable.mostPopularTag:after{
  content: "MOST POPULAR";
   position:absolute;
   top: -28px;
   width: 287px;
   height: 38px;
   left:50%;
   margin-left: -143px;
   background-color: #9ADB61;
   color: var(--colorWhite);
   line-height: 17px;
   font-size: 14px;
   font-weight: bold;
   display: flex;
   justify-content: center;
   align-items: center;
   letter-spacing: 6px;
}



/*contactBottomPage*/
.contactPage{ overflow: hidden; }
.contactBottomPage{ background-color: var(--colorBlue); position: relative;     padding: 70px 0 87px;}

.contactBottomPage .contactForm{ position: absolute; bottom: 60px; max-width: 586px; width: 100%; border:  solid 1px var(--colorLightBlueTxt); padding: 33px  37px;
 background-color: var(--colorWhite);
 border-radius: 12px;
 -webkit-border-radius: 12px;
 -moz-border-radius: 12px;
}
.contactBottomPage .gridRow{align-items: stretch !important;} 
.contactBottomPage .contactForm .TitleBox { font-size: 36px; font-weight: bold; color: var(--colorBlack); }
.contactBottomPage .contactForm .formFieldRow {  margin-bottom: 12px;}
.coantctInfoBox .companyName{ font-size: 36px; color: var(--colorWhite); font-weight: bold; margin-bottom: 30px; }
.coantctInfoBox .contactDetailBox ul li{ font-size: 21px; color: var(--colorLightBlueTxt); padding-left: 35px;  line-height: 33px;}
.coantctInfoBox .contactDetailBox ul li a { font-size: 21px; color: var(--colorLightBlueTxt); line-height: 33px;}
.coantctInfoBox .contactDetailBox .bottomLocationBox{ background:url(../images/bottomlocation-icon.svg) no-repeat;
background-position: top 3px  left;
  }

.coantctInfoBox .contactDetailBox .bottomCallBox{ background:url(../images/bottomPhone-iocn.svg) no-repeat;
  padding-left: 45px; 
background-position: top left;
margin-bottom: 20px;
  }
  .coantctInfoBox .contactDetailBox .bottomMailBox{ background:url(../images/bottomMail-icon.svg) no-repeat;
background-position: top left;
padding-left: 45px; 

  }

.coantctInfoBox  .socialMediaBox{ margin-top: 71px; }
.coantctInfoBox  .socialMediaBox ul{ display: flex; justify-content: flex-start; align-items: center; }
  .coantctInfoBox  .socialMediaBox ul li{ margin-right: 43px; }
  .coantctInfoBox  .socialMediaBox ul li:last-child{ margin-right:0; }


.locationMapbox{ margin-top: 80px;  position: relative;}

.bgContactPageForm{ position: absolute;
    top: -100%;
    right: 0%;
    z-index: 0;
    pointer-events: none;
    width: 50%;

  }
.bgContactPageForm img{     filter: blur(50px);  -webkit-filter: blur(50px); }


/*featuresPage*/

.featuresPage{ padding-top: 85px; min-height: 100vh; }

.featuresBanner{
background-position: center top;
background-size: 100%;
padding-top: 57px;
  }
.featuresBanner img{ max-width: 100%; }
.featuresBanner .mainTitle{ font-size: 100px; line-height: 120px; }
.featuresBanner .mainTitle span{ display: block; width: 100%; }


.featuresBenefitsList{ max-width: 1144px; margin: 60px auto ; }

.featuresBenefitsListRow{ display: flex; justify-content: space-between; align-items: center;     margin-bottom: 25px;
    padding-top: 35px;}
.featuresBenefitsListRow:nth-child(even){ flex-direction: row-reverse; }
.featuresBenefitsListRow:nth-child(even) .featuresBenefitsListInfo{ padding-left: 0;  padding-right:  95px;}
.featuresBenefitsListRow:nth-child(odd){}
.featuresBenefitsListRow .featuresBenefitsListImg{  max-width: 320px;     min-width: 320px; width: 100%; height: 320px;  box-shadow: 0 15px 39px rgba(3,178, 162, 0.14);
display: flex;justify-content: center; align-items: center; border-radius: 20px; -webkit- border-radius: 20px; -moz- border-radius: 20px; overflow: hidden; }
.featuresBenefitsListRow .featuresBenefitsListInfo{ flex-grow: 1; padding-left: 95px; }
.featuresBenefitsListRow .featuresBenefitsListInfo .benifitsTitle{ font-size: 39px; font-weight: bold; color: var(--colorBlack); margin-bottom: 30px; line-height: 47px;}
.featuresBenefitsListRow .featuresBenefitsListInfo .benifitsText p{ font-size: 24px;  line-height: 32px; }


.MobileOpenForPass{ display: none; }
.howitworkBanner{ padding-top: 150px; }

/*sempleContentBox*/

.sempleContentBox{ margin-bottom: 55px; }
.sempleContentBox p{ font-size: 16px; line-height: 24px; margin-bottom: 15px;  }
.sempleContentBox h1,
.sempleContentBox h2,
.sempleContentBox h3,
.sempleContentBox h4,
.sempleContentBox h5,
.sempleContentBox h6{
  color: var(--colorBlack);
  margin-bottom: 15px;
   margin-top:25px;
}

.sempleContentBox ol,
.sempleContentBox ul{ list-style: inherit;  padding-left: 15px; margin-top: 25px; margin-bottom: 15px;}
.sempleContentBox ol li,
.sempleContentBox ul li{ color: var(--colorBlack); }

.sempleContentBox ol li small,
.sempleContentBox ul li small{ display: block; padding-left: 15px; margin-top: 10px;   line-height: 24px; color: var(--colorLightBlueTxt);  }

.sempleContentBox ol li small:last-child,
.sempleContentBox ul li small:last-child { margin-bottom: 15px;}
.sempleContentBox strong{color: var(--colorBlack); font-weight: normal; font-size: 16px;}

.sempleContentBox a{ color: var(--colorBlue); text-decoration: underline; }



/*whatClientsAreSaying-carousel */
.whatClientsAreSaying-carousel .owl-dots{ display: flex; justify-content: center; align-items: center;     margin-top: -20px; }

.whatClientsAreSaying-carousel .owl-dots .owl-dot{ width: 13px; height: 13px; border-radius:55px;
-webkit-border-radius:55px;
-moz-border-radius:55px;
border: solid 1px var(--colorBlue);
margin:0 5px; 
  }

.whatClientsAreSaying-carousel .owl-dots .owl-dot.active{  background-color:  var(--colorBlue) }
.whatClientsAreSaying-carousel .owl-dots .owl-dot span{ display: none; }


/*mobilesubTabsBox*/
.desktopPlanTabsData{ display: block; }
.mobilesubTabsBox{ display: none; }
.mobilesubTabsBox {  }
.mobilesubTabsBox > ul{ display: flex; justify-content: space-between; border-bottom: solid 1px var(--colorBorder); margin: 0 -25px 22px; }
.mobilesubTabsBox > ul > li{  width: 33%;  }
 .mobilesubTabsBox > ul > li > a{ font-size: 14px; font-weight: bold; color:var(--colorBlack); text-transform: uppercase; padding:13px; display: inline-block; position: relative;
 width: 100%; text-align: center; }
 .mobilesubTabsBox > ul > li > a.activelink{ color: var(--colorBlue); }
 .mobilesubTabsBox > ul > li > a.activelink:after{ height: 7px; width: 100%; background-color: var(--colorBlue); content: ""; position: absolute; bottom: 0px; left: 0px; }
.mobilesubTabsBox  .mostPopularTag{ margin-top: 45px; }



/*faqPage*/

.faqPage.featuresPage {
    padding-top: 50px;
    min-height: 80vh;
}
.faqPage{ margin: 50px 0; }

.faqlist{ max-width: 950px; margin:0 auto;  }
.faqlist .faqRow{ margin-bottom: 15px;
    box-shadow: 0 15px 39px rgba(3, 78, 162, 0.14);
    -webkit-box-shadow: 0 15px 39px rgba(3, 78, 162, 0.14);
    -moz-box-shadow: 0 15px 39px rgba(3, 78, 162, 0.14);
 }
.faqlist .faqRow .faqHeader{ background-color: var(--colorBlue); color: var(--colorWhite); font-size: 18px; font-weight: bold; padding: 15px; 
  border-radius: 5px 5px  5px 5px;
  -webkit-border-radius: 5px 5px  5px 5px;
  -moz-border-radius: 5px 5px  5px 5px;
  cursor: pointer;
   }
.faqlist .faqRow .faqBody{ padding:25px; border:solid 1px var(--colorBorder);
  border-radius:   0 0 5px 5px;
  -webkit-border-radius:   0 0 5px 5px;
  -moz-border-radius:   0 0 5px 5px;
 display: none;
   }

.faqlist .faqRow.faqOpen .faqHeader{
    border-radius: 5px 5px  0px 0px;
  -webkit-border-radius: 5px 5px  0px 0px;
  -moz-border-radius: 5px 5px  0px 0px;
}
.faqlist .faqRow.faqOpen .faqBody{
  display: block;
}

.faqlist .faqRow.faqOpen .faqBody p{
  line-height: 28px;
}


/*footer*/

footer{ border-top: solid 1px var(--colorBorder); padding: 38px 0; }
footer .copyRihgtBox{ color: var(--colorBlack); margin-bottom: 12px; }

footer .bottomLinkBox{ display: flex; justify-content: center; align-items: center; }

footer .bottomLinkBox li{ border-right: solid 1px #B8B8B8; padding: 0 5px; }
footer .bottomLinkBox li:last-child{ border-right: none; }
footer .bottomLinkBox li a{ color: #B8B8B8; font-size: 20px; font-weight: 300;  line-height: 100%;}


/*fullWithBottom */
.fullWithBottom{ margin-bottom: 15px; }

.fullWithBottom ul { display: flex; justify-content: center; align-items: center; }

.fullWithBottom p {
    color: var(--colorBlack);
    margin-bottom: 12px;
    line-height: 26px;
}

.fullWithBottom ul  li {
    border-right: solid 1px #B8B8B8;
    padding: 0 5px;
}

.fullWithBottom ul  li a {
    color: #B8B8B8;
    font-size: 20px;
    font-weight: 300;
    line-height: 100%;
}

.fullWithBottom ul  li:last-child{ border:none; }



/*industryPopUp*/

.industryPopUp{ background-color: rgba(0,0,0,0.5); position: fixed; top: 0px; bottom: 0px; left: 0px; right: 0px; display: none; z-index: 8; }
.industryPopUp .industryPopUpHolder{width: 100%;  height: 100%; display: flex; justify-content: center; align-items: center;}
.industryPopUp .industryPopUpHolder .industryPopUpInner{width: 100%;
    max-width: 550px;
    background: var(--colorWhite);
    padding: 25px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    box-shadow: 0 15px 39px rgba(3, 78, 162 , 0.14);
    -webkit-box-shadow: 0 15px 39px rgba(3, 78, 162 , 0.14);
    -moz-box-shadow: 0 15px 39px rgba(3, 78, 162 , 0.14);
  }

/*============================ common css =================================*/

.bodyContainer{ max-width: 1650px;  padding: 0 15px; margin: 0 auto;}
.headerContainer{ max-width: 1784px; padding: 0 15px; margin: 0 auto;}


.mainTitle{

font-weight: bold;
color: var(--colorBlack);
 font-size:60px;
 line-height: 80px;
 margin-bottom: 25px;
 position: relative;
}



.mainTitle span{  color: var(--colorBlue); }
.blubg{ background-color: var(--colorBlue); }

/*gridBox*/


.gridRow{ margin: 0 -15px; display: flex; justify-content: flex-start; align-items: flex-start; flex-grow: 1;  flex-wrap: wrap; }

.gridRow.centerData{ align-items: center ; }

.gridRow [class*="gridcoll-"]{padding: 0 15px;   position: relative; min-height: 1px; }

.gridRow .gridcoll-12, .gridcoll-12{ 
    width: 100%; 
}
.gridRow .gridcoll-11, .gridcoll-11 {
  width: 91.66666667%;
}
.gridRow .gridcoll-10, .gridcoll-10 {
  width: 83.33333333%;
}
.gridRow .gridcoll-9, .gridcoll-9 {
  width: 75%;
}
.gridRow .gridcoll-8, .gridcoll-8 {
  width: 66.66666667%;
}
.gridRow .gridcoll-7, .gridcoll-7 {
  width: 58.33333333%;
}
.gridRow .gridcoll-6, .gridcoll-6 {
  width: 50%;
}
.gridRow .gridcoll-5, .gridcoll-5 {
  width: 41.66666667%;
}
.gridRow .gridcoll-4, .gridcoll-4 {
  width: 33.33333333%;
}
.gridRow .gridcoll-3, .gridcoll-3 {
  width: 25%;
}
.gridRow .gridcoll-2, .gridcoll-2 {
  width: 16.66666667%;
}
.gridRow .gridcoll-1, .gridcoll-1 {
  width: 8.33333333%;
}


/*buttone box*/

.rkBtn{ 
    background-color: var(--colorBlue);
    color: var(--colorWhite);
    padding: 19px 100px 21px 49px;
    display: inline-block; 

    border-radius: 55px;
    -webkit-border-radius: 55px;
    -moz-border-radius: 55px;

    position: relative;
    font-size: 30px;
    font-weight: bold;
    line-height: 37px;
 transition: all 0.5s ease;
}

.rkBtn .cercal-icon{ position: absolute; top: 17px; right: 24px; width: 44px; height: 44px;  border: solid 1px var(--colorDrakBlue); 
   border-radius: 55px;
    -webkit-border-radius: 55px;
    -moz-border-radius: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
    } 
.rkBtn .cercal-icon img{ width: 8.52px; height: 16.21px;   transition: all 0.3s; }
.rkBtn:hover .cercal-icon{
    border-color: var(--colorWhite);
}
.rkBtn:hover .cercal-icon img{ width: 12.52px; height: 20.21px; }

.rkBtn:hover{
        background-color: var(--colorHoverBlue);
} 



.underLineBtn{
  padding:15px 28px; 
  border: solid 2px var(--colorWhite);

  border-radius: 55px;
  -webkt-border-radius: 55px;
  -moz-border-radius: 55px;

  font-size: 18px;
  font-weight: bold;
     letter-spacing: 1px;
  line-height: 20px;
   color:  var(--colorWhite);
   display: inline-block;
   transition: all 0.5s ease; 

}

.underLineBtn:hover{
 background-color: var(--colorBlue);
 border-color: var(--colorBlue);
 color:var(--colorWhite);
 box-shadow: 0  5px 15px rgba(0,0,0,0.1);
}

label{ font-size: 16px; font-weight: bold; color: var(--colorTextDarkGray); margin-bottom: 0px; display: block; line-height: 28px; }
.formFieldRow{ margin-bottom: 17px; }
.rkFormControll{
  height: 48px;
  background-color: var(--colorWhite);
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
 font-family: 'Roboto' !important;
  border:solid 1px var(--colorBorder);
  width: 100%;
  padding: 15px 10px;
  font-size: 16px;
  color: var(--colorBlack);
}
textarea.rkFormControll{ height: auto; min-height: 140px;}
.rkFormControll:focus{  border:solid 1px var(--colorBorder) !important;}

input:focus,
select:focus,
textarea:focus,
button:focus {
    outline: none;
}
input:focus {
    outline-width: 0;
}

.rkFormControll[type="password"]{
  background: var(--colorWhite) url('../images/closeEye_icon.svg') no-repeat;
  background-position: center right 15px;
}

.rkFormControll[type="password"]#confirm_password{
  background: var(--colorWhite) url('../images/openEye_icon.svg') no-repeat;
  background-position: center right 15px;
}



.rkFormControll[type="password"]:focus{
   background: var(--colorWhite) ;
}


::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: var(--colorTextGray);
}
::-moz-placeholder { /* Firefox 19+ */
  color: var(--colorTextGray);
}
:-ms-input-placeholder { /* IE 10+ */
  color: var(--colorTextGray);
}
:-moz-placeholder { /* Firefox 18- */
  color: var(--colorTextGray);
}


.sempalBtn{ 
height: 48px;
background-color: var(--colorBlue);
border:solid 1px  var(--colorBlue);
color:  var(--colorWhite);
font-weight: bold;
font-size: 18px;
text-align: center;
border-radius: 8px;
-webkit-border-radius: 8px;
-moz-border-radius: 8px;
cursor: pointer;
 }

.sempalBtn.btnBlock{
  display: block;
  width: 100%;
}


/*text align*/
.text-left{ text-align: left !important; }
.text-right{ text-align: right !important; }
.text-center{ text-align: center !important; }

/*div align*/
.inlineBox-left{ display: flex; justify-content: flex-start !important; align-items: center !important; }
.inlineBox-right{ display: flex; justify-content: flex-end !important; align-items: center !important; }
.inlineBox-center{ display: flex; justify-content: space-between !important; align-items: center !important; }
.inlineBox-top{ display: flex; justify-content: space-between !important; align-items: flex-start !important; }
.inlineBox-bottom{ display: flex; justify-content: space-between !important;  align-items: flex-end !important; }





/*margin*/
.mt-0{ margin-top: 0px !important; }
.mt-5{ margin-top: 5px !important; }
.mt-10{ margin-top: 10px !important; }
.mt-15{ margin-top: 15px !important; }
.mt-20{ margin-top: 20px !important; }
.mt-25{ margin-top: 25px !important; }
.mt-30{ margin-top: 30px !important; }
.mt-35{ margin-top: 35px !important; }
.mt-40{ margin-top: 40px !important; }
.mt-45{ margin-top: 45px !important; }
.mt-50{ margin-top: 50px !important; }

.ml-0{ margin-left: 0px !important; }
.ml-5{ margin-left: 5px !important; }
.ml-10{ margin-left: 10px !important; }
.ml-15{ margin-left: 15px !important; }
.ml-20{ margin-left: 20px !important; }
.ml-25{ margin-left: 25px !important; }
.ml-30{ margin-left: 30px !important; }
.ml-35{ margin-left: 35px !important; }
.ml-40{ margin-left: 40px !important; }
.ml-45{ margin-left: 45px !important; }
.ml-50{ margin-left: 50px !important; }

.mr-0{ margin-right: 0px !important; }
.mr-5{ margin-right: 5px !important; }
.mr-10{ margin-right: 10px !important; }
.mr-15{ margin-right: 15px !important; }
.mr-20{ margin-right: 20px !important; }
.mr-25{ margin-right: 25px !important; }
.mr-30{ margin-right: 30px !important; }
.mr-35{ margin-right: 35px !important; }
.mr-40{ margin-right: 40px !important; }
.mr-45{ margin-right: 45px !important; }
.mr-50{ margin-right: 50px !important; }

.mb-0{ margin-bottom: 0px !important; }
.mb-5{ margin-bottom: 5px !important; }
.mb-10{ margin-bottom: 10px !important; }
.mb-15{ margin-bottom: 15px !important; }
.mb-20{ margin-bottom: 20px !important; }
.mb-25{ margin-bottom: 25px !important; }
.mb-30{ margin-bottom: 30px !important; }
.mb-35{ margin-bottom: 35px !important; }
.mb-40{ margin-bottom: 40px !important; }
.mb-45{ margin-bottom: 45px !important; }
.mb-50{ margin-bottom: 50px !important; }


/*padding*/

.pt-0{ padding-top: 0px !important; }
.pt-5{ padding-top: 5px !important; }
.pt-10{ padding-top: 10px !important; }
.pt-15{ padding-top: 15px !important; }
.pt-20{ padding-top: 20px !important; }
.pt-25{ padding-top: 25px !important; }
.pt-30{ padding-top: 30px !important; }
.pt-35{ padding-top: 35px !important; }
.pt-40{ padding-top: 40px !important; }
.pt-45{ padding-top: 45px !important; }
.pt-50{ padding-top: 50px !important; }

.pl-0{ padding-left: 0px !important; }
.pl-5{ padding-left: 5px !important; }
.pl-10{ padding-left: 10px !important; }
.pl-15{ padding-left: 15px !important; }
.pl-20{ padding-left: 20px !important; }
.pl-25{ padding-left: 25px !important; }
.pl-30{ padding-left: 30px !important; }
.pl-35{ padding-left: 35px !important; }
.pl-40{ padding-left: 40px !important; }
.pl-45{ padding-left: 45px !important; }
.pl-50{ padding-left: 50px !important; }

.pr-0{ padding-right: 0px !important; }
.pr-5{ padding-right: 5px !important; }
.pr-10{ padding-right: 10px !important; }
.pr-15{ padding-right: 15px !important; }
.pr-20{ padding-right: 20px !important; }
.pr-25{ padding-right: 25px !important; }
.pr-30{ padding-right: 30px !important; }
.pr-35{ padding-right: 35px !important; }
.pr-40{ padding-right: 40px !important; }
.pr-45{ padding-right: 45px !important; }
.pr-50{ padding-right: 50px !important; }

.pb-0{ padding-bottom: 0px !important; }
.pb-5{ padding-bottom: 5px !important; }
.pb-10{ padding-bottom: 10px !important; }
.pb-15{ padding-bottom: 15px !important; }
.pb-20{ padding-bottom: 20px !important; }
.pb-25{ padding-bottom: 25px !important; }
.pb-30{ padding-bottom: 30px !important; }
.pb-35{ padding-bottom: 35px !important; }
.pb-40{ padding-bottom: 40px !important; }
.pb-45{ padding-bottom: 45px !important; }
.pb-50{ padding-bottom: 50px !important; }





/*animation*/


.shapeRotate {
  display: inline-block;
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}



.shapeBounce50  {
  display: inline-block;
  animation: bounce5 5s linear infinite;
}

@keyframes bounce5 {
   0%   { transform: translateY(0); }
        50%  { transform: translateY(-50px); }
        100% { transform: translateY(0); }
}


.shapeBounce20  {
  display: inline-block;
  animation: bounce20 5s linear infinite;
}

@keyframes bounce20 {
   0%   { transform: translateY(0); }
        50%  { transform: translateY(-20px); }
        100% { transform: translateY(0); }
}






.animationShape{ position: absolute; }
.shapeCircleYellow{
    background: url(../images/shapeCircleYellow.svg) no-repeat;
}

.shapeCircleBlue{
    background: url(../images/shapeCircleBlue.svg) no-repeat;
}

.shapeSquareBlue{
    background: url(../images/shapeSquareBlue.svg) no-repeat;
}



/*custome checkbox and redio*/

/* The container */
.customCheckBox  {
    display: inline-block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px !important;
  font-weight: normal !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.customCheckBox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.customCheckBox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 23px;
  width: 23px;
  background-color: transparent;
border: solid 1px var(--colorBorder);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;  

}



/* On mouse-over, add a grey background color */
.customCheckBox:hover input ~ .checkmark {
  background-color: var(--colorBlue);
  border: solid 1px var(--colorBlue);
}

/* When the checkbox is checked, add a blue background */
.customCheckBox input:checked ~ .checkmark {
  background-color: var(--colorBlue);
border: solid 1px var(--colorBlue);
}

/* Create the checkmark/indicator (hidden when not checked) */
.customCheckBox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.customCheckBox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.customCheckBox .checkmark:after {
  left: 7px;
  top: 2px;
  width: 8px;
  height: 14px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}



.onlyRadioBox{}

/* The container */
.onlyRadioBox {
    display: inline-block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 16px !important;
  font-weight: normal !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default radio button */
.onlyRadioBox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

/* Create a custom radio button */
.onlyRadioBox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: transparent;
  border:solid 1px var(--colorBorder);
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.onlyRadioBox:hover input ~ .checkmark {
  background-color: var(--colorBlue);
}




/* When the radio button is checked, add a blue background */
.onlyRadioBox input:checked ~ .checkmark {
  background-color: transparent;
   border:solid 1px var(--colorBlue);
}

.onlyRadioBox .checkmark + span{
  color: var(--colorTextDarkGray);
}
.onlyRadioBox input:checked ~ .checkmark + span{
  color:var(--colorBlue);
}
/* Create the indicator (the dot/circle - hidden when not checked) */
.onlyRadioBox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.onlyRadioBox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.onlyRadioBox .checkmark:after {
  top: 5px;
  left: 5px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background:  var(--colorBlue);
}





video, iframe{ width: 100%; height: 50vmin; }

.bannervideoBox{ position: relative; }

.bannervideoBox iframe{
      border: solid 10px #CCC;
    border-radius: 8px;
    box-shadow: 0 15px 39px rgba(3, 78 ,162 ,0.1);
        -webkit-box-shadow: 0 15px 39px rgba(3, 78 ,162 ,0.1);
}



/*============================ media Query =================================*/


/* Large desktops and laptops */
@media (min-width: 1200px) {
    body{ font-size: 16px; }
}

/* Landscape tablets and medium desktops */
@media (min-width: 1200px) and (max-width: 1619px) {

  header .MenuBox ul li { padding: 0 10px;}
  header .MenuBox ul li a { font-size: 14px;}
  .bookDemo .bookDemoBtn{ font-size: 14px;     min-width: 180px; }
  .bookDemo span{    margin-left: 15px;  margin-right: 25px;     font-size: 13px;}
  .signInandSignUp ul li a { font-size: 14px;}


  .bannerTxtHolder .winEveryTxt { font-size: 35px;}
  .bannerTxtHolder .customerinteractionTxt { font-size: 60px;}

  .bannerTxtHolder .infoTxt p { font-size: 18px;}

  .rkBtn{font-size: 24px;     padding: 10px 90px 10px 39px;}
  .rkBtn .cercal-icon{    width: 30px;  height: 30px;     top: 14px;}

.banner .bannerImgBox img{ max-width: 100%; }
.banner {  padding-top: 100px;}

.BannerShape.shapeSquareBlue{top: 340px;}


.mainTitle{     font-size: 40px; }
.allFeatures a { font-size: 14px;}

.featuresItemBox .featuresItem .titleBox { font-size: 24px;}
.featuresItemBox .featuresItem{    padding: 25px 25px}

.featuresItemBox .featuresItem .infoIconPart .featuresItemIconBox{
      padding: 43px 35px;  max-width: 154px; min-width: 154px;
    }
.featuresItemBox .featuresItem .titleBox img { margin-left: 5px;}
 .featuresItemBox .featuresItem .infoTxt p { font-size: 18px; line-height: 24px;  } 
 .successStories .titleTwoline { font-size: 40px;}
 .successStories .titleTwoline span{font-size: 70px;}
 .successStories .rightSidetxt{ font-size: 20px; }
 .successStories .rightSidetxt:after { width: 31%;}
 .successStories .successStoriesSummery p { line-height: 24px;}
 .successStoriesItemBox .successStoriesItem .storiesImgBox .storiesImgBoxHolder { width: 255px; height: 255px;}
 .successStoriesItemBox .successStoriesItem .storiesImgBox .storiesImgBoxHolder .logoImg { max-width: 50%; max-height: 100px;}

 .successStoriesItemBox .successStoriesItem .storiesTxtBox .storiesTitle { font-size: 50px;}
 .successStoriesItemBox .successStoriesItem .storiesTxtBox .storiesSubTitle { font-size: 21px;}
 .successStoriesItemBox .successStoriesItem .storiesTxtBox .storiesInfo{    margin-top: 23px;}
 .successStoriesItemBox .successStoriesItem .storiesTxtBox .storiesInfo p { font-size: 14px; line-height: 26px;}

 .whyNeedReviews .summeryBox p { font-size: 18px;}
 .whyNeedReviews .whyNeedReviewsDetail p { margin-bottom: 15px; line-height: 24px; font-size: 14px;}

 .whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsMobileImg img,
 .whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsGirlImg img{ max-width: 80%; }
 .whyNeedReviews .whyNeedReviewsDetail{    margin-left: 290px;  width: calc( 100% - 400px);}
 .whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsMobileImg{    left: -250px;}

.whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsGirlImg{    right: -100px;}

.GetStarted .planIconBox { width: 395px; height: 310px;}
.GetStarted .planIconBox{    padding: 15px 86px; display: flex; justify-content: center; align-items: center;}
.GetStarted .planIconBox img{ max-width: 80%;}

.GetStarted .infoHolderpart .title { font-size: 24px;}
.GetStarted .infoHolderpart .infoText { font-size: 14px; max-width: 100%; line-height: 22px;}
.GetStarted .infoHolderpart .title{margin-bottom: 10px;}
.GetStarted .infoHolderpart .numberBox { font-size: 157px; left: -110px; top: 0px;  }

.clientsSayingBox .clientsSayingsliderPart .clientInfo .aboutClient .clientNameBox{font-size: 16px;     margin-bottom: 10px;}
.clientsSayingBox .clientsSayingsliderPart .clientInfo .aboutClient .clientpost{font-size: 16px;}

.clientsSayingBox .clientsSayingsliderPart .clientWord p{ line-height: 22px; }

.moreAboutReviewKeep .titleBox {  font-size: 26px;}
.underLineBtn{    padding: 10px 58px;    border: solid 2px var(--colorWhite); line-height: 22px; font-size: 16px;}
.startTrial .titleBox{    font-size: 30px;     margin-right: 70px;}

footer{    padding: 25px 0;}
footer .copyRihgtBox{ font-size: 14px; margin-bottom: 8px; }
footer .bottomLinkBox li a{ font-size: 14px; }

.BannerShape.shapeSquareBlue2{ top: 450px }


.fullWidthPage .fullWidthRow .fullWidthLeft {
    background: var(--colorWhite);
    width: calc( 60% - 35px);
    margin-left: 150px;
}

.formAndListHolder .formBox { max-width: 510px;}
.accountPolicy p { font-size: 14px;     line-height: 20px;}
.fullWidthPage .fullWidthRow .fullWidthLeft .backBtn{    top: 20px;  left: 25px;}
.fullWidthPage .fullWidthRow .fullWidthRight { width: 40%;}



.loginpage.fullWidthPage .fullWidthRow .fullWidthLeft {  margin-left: 150px;}
.loginpage.fullWidthPage .loginInfoText{    padding: 0 10%;}
.loginpage.fullWidthPage .loginInfoText .subTitle{ font-size: 30px;     line-height: 38px; }
.loginpage.fullWidthPage .loginInfoText .titleBox{font-size: 56px;  line-height: 60px;}
.loginpage.fullWidthPage .loginInfoText .pointList ul li{padding-bottom: 15px;     padding-top: 7px; font-size: 14px;} 
.loginpage.fullWidthPage .formBody {  margin: 4% 0;}

.billingContainer  .gridRow .gridcoll-6:first-child{  width: 40% }
.billingContainer  .gridRow .gridcoll-6:last-child{  width: 60% }

.innerBanner  .bodyContainer { max-width: 1460px;}
.BannerBottomBar .titleBox {  font-size: 50px;     line-height: 62px;}

.BannerBottomBar a { font-size: 18px;}
.plansTabsBox .tabHeadBox ul li a{font-size: 18px;}

.planPriceTable .planPriceTableBody .planFeaturesList ul li{    padding: 18px 0; font-size: 18px;     background-position: left top 14px; 
padding-left: 35px;}
.planPriceTable .planPriceTableBody .tryitout { font-size: 18px;}
.planPriceTable .planPriceTableHead .planGetStartedBtn .takePlanBtn{    height: 50px;     min-width: 255px;     font-size: 18px;}
.planPriceTable .planPriceTableBody { margin-top: 30px;  padding: 22px;}
.BannerTopBar .textBox .titleBox {  font-size: 18px;}
.BannerTopBar .textBox small {  font-size: 12px;}

header .MenuBox ul li a {  font-size: 14px;}
header .MenuBox ul li { padding: 0 5px;}
header .MenuBox ul li.haveSubmenu { background: url(../images/menuDropDownArrow.svg) no-repeat; background-position: center right 4px;  padding-right:20px; background-size: 10px;}
.bodyContainer, .headerContainer {  max-width: 95%;}

}

/* Landscape tablets and medium desktops */
@media (min-width: 1200px) and (max-width: 1400px) {
.BannerBottomBar .titleBox {  font-size: 42px; line-height: 52px;}
.planPriceTable .planPriceTableHead .planPriceBox .planPriceBoxHolder{font-size: 86px;}
.planPriceTable .planPriceTableHead .planPriceBox sup{right: -40px;  font-size: 24px;}
.innerBanner .innerBannerImgBox .bannerMainImg{margin-left: -80px;   margin-top: -40px;}

.billingContainer {    max-width: 1150px;}
.formBody .formtitle { font-size: 26px;}
label {  font-size: 14px;}
.subscriptionSelecter label {  margin-right: 35px;}
.customCheckBox{font-size: 14px !important;  margin-bottom: 0;     line-height: 20px;}
.loginpage.fullWidthPage .fullWidthRow .fullWidthLeft {  margin-left: 100px;     padding-right: 100px;}
.formBody .allreadyAccountLink {  font-size: 14px; margin-bottom: 20px !important;}
.fullWithBottom p {  font-size: 12px;}

.fullWithBottom ul li, .fullWithBottom ul li a { font-size: 12px;}

.loginpage.fullWidthPage .loginInfoText .pointList ul li{font-size: 12px;}
.accountPolicy{ margin: 0px; }
.fullWidthPage .fullWidthRow .fullWidthLeft{    margin-left: 100px; width: calc( 60% - -315px);}


.reviewKeepAdvantagesItem{padding: 35px;}
.reviewKeepAdvantagesItem .reviewKeepAdvantagesItemHeader .ItemTitleBox {  font-size: 20px;}
.reviewKeepAdvantagesItem .reviewKeepAdvantagesItemHeader .ItemiconBox{width: 140px;}
.successStoriesItemBox .successStoriesItem .storiesTxtBox .storiesTitle {
    font-size: 36px;
}


}


@media (min-width: 1024px) and (max-width: 1199px) {
.logoBox img { width: 100px;}
header .MenuBox ul li a { font-size: 12px;}
header .MenuBox ul li { padding: 0 5px;}
header .MenuBox ul li.haveSubmenu{padding: 0 10px;}


header .MenuBox ul li.haveSubmenu {
    background: url(../images/menuDropDownArrow.svg) no-repeat;
    background-position: center right 0px;
    background-size: 7px auto;
}
.bookDemo .bookDemoBtn{    font-size: 14px;  line-height: 18px; min-width: 150px;     height: 35px;}
.bookDemo .bookDemoBtn img { margin-left: 4px; max-width: 15px;}

.bookDemo span{    margin-left: 5px; margin-right: 5px;     font-size: 12px;}
.signInandSignUp ul li a { font-size: 12px;}

.bannerTxtHolder .winEveryTxt { font-size: 25px;}
.bannerTxtHolder .customerinteractionTxt { font-size: 40px;}
.bannerTxtHolder .infoTxt p {  font-size: 16px;}



.rkBtn{ padding: 10px 60px 10px 20px;  font-size: 18px;}
.rkBtn .cercal-icon{    top: 11px; right: 15px; width: 34px; height: 34px;}

.BannerShape.shapeSquareBlue{    top: 350px;}





.mainTitle{     font-size: 30px; }
.allFeatures { width: 135px; margin: -20px auto 0px;}

.allFeatures a { font-size: 12px;}

.featuresItemBox .featuresItem .titleBox { font-size: 18px;}
.featuresItemBox .featuresItem{    padding: 25px 25px;
border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;}

.featuresItemBox .featuresItem .infoIconPart .featuresItemIconBox{
         padding: 23px 25px;  max-width: 134px;  min-width: 134px;
    }
.featuresItemBox .featuresItem .titleBox img { margin-left: 5px;}
 .featuresItemBox .featuresItem .infoTxt p { font-size: 14px; line-height: 20px;  } 
 .successStories .titleTwoline { font-size: 30px;}
 .successStories .titleTwoline span{font-size: 50px;}
 .successStories .rightSidetxt{ font-size: 16px; }
 .successStories .rightSidetxt img { vertical-align: middle;}
 .successStories .rightSidetxt:after { width: 31%;}
 .successStories .successStoriesSummery p { line-height: 20px;font-size: 12px;}
 .successStoriesItemBox .successStoriesItem .storiesImgBox .storiesImgBoxHolder {width: 235px;height: 105px;}
 .successStoriesItemBox .successStoriesItem .storiesImgBox .storiesImgBoxHolder .logoImg { max-width: 50%; max-height: 100px;}

 .successStoriesItemBox .successStoriesItem .storiesTxtBox .storiesTitle { font-size: 24px;}
 .successStoriesItemBox .successStoriesItem{ padding:25px;  }
 .whyNeedReviews {  margin-top: 40px;}
 .GetStarted {  margin-top: 40px;}
 .successStoriesItemBox .successStoriesItem .storiesTxtBox .storiesSubTitle { font-size: 18px;}
 .successStoriesItemBox .successStoriesItem .storiesTxtBox .storiesInfo{    margin-top: 15px;}
 .successStoriesItemBox .successStoriesItem .storiesTxtBox .storiesInfo p { font-size: 12px; line-height: 20px;}

 .whyNeedReviews .summeryBox p { font-size: 16px;}
 .whyNeedReviews .whyNeedReviewsDetail p { margin-bottom: 10px;line-height: 20px;font-size: 12px;}
 .whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsDetail-info p {
    font-size: 12px;
    line-height: 20px;
}

 .whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsMobileImg img,
 .whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsGirlImg img{ max-width: 80%; }
 .whyNeedReviews .whyNeedReviewsDetail{    margin-left: 270px;  width: calc( 100% - 400px);}
 .whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsMobileImg{    left: -250px;}

.whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsGirlImg{    right: -100px;}

.GetStarted .planIconBox {width: 275px;height: 250px;}
.GetStarted .planIconBox{    padding: 15px 35px; display: flex; justify-content: center; align-items: center;}
.GetStarted .planIconBox img{ max-width: 80%;}

.GetStarted .infoHolderpart .title { font-size: 18px;}
.GetStarted .infoHolderpart .infoText { font-size: 12px; max-width: 100%; line-height: 20px;}
.GetStarted .infoHolderpart {  margin-left: 80px;}
.GetStarted .planBoxRow:nth-child(2n+1) .infoHolderpart{margin-right: 80px;}
.GetStarted .planBoxRow { margin-bottom: 40px;}
.GetStarted .infoHolderpart .title{margin-bottom: 10px;}
.GetStarted .infoHolderpart .numberBox {font-size: 107px; left: -80px; top: 0px;  }

.GetStarted .planBoxRow:nth-child(2n+1) .infoHolderpart .numberBox{right: -90px;}
.clientsSayingBox .clientsSayingsliderPart .clientInfo .aboutClient .clientNameBox{font-size: 12px;     margin-bottom: 10px;}
.clientsSayingBox .clientsSayingsliderPart .clientInfo .aboutClient .clientpost{font-size: 12px;}

.clientsSayingBox .clientsSayingsliderPart .clientWord p{line-height: 18px;font-size: 12px; }
.clientsSayingBox .clientsSayingsliderPart .clientInfo .clientPicBox{margin-right: 14px;}
.clientsSayingBox .clientsSayingsliderPart .centerBox {  margin-top: 35px;}
.moreAboutReviewKeep .titleBox {  font-size: 26px;}
.underLineBtn{    padding: 10px 20px;    border: solid 2px var(--colorWhite); line-height: 22px; font-size: 16px;}
.startTrial .titleBox{    font-size: 24px;     margin-right: 40px;}
.startTrial {  padding: 34px 0;}
footer{    padding: 25px 0;}
footer .copyRihgtBox{ font-size: 12px; margin-bottom: 8px; }
footer .bottomLinkBox li a{ font-size: 12px; }

.BannerShape.shapeSquareBlue2{ top: 450px }

.featuresItemBox .gridRow .gridcoll-7{width: 55.333333%;}
.featuresItemBox .gridRow .gridcoll-5 { width: 44.666667%;}


.featuresItemBox .gridRow [class*="gridcoll-"] { padding-right: 10px;  padding-left: 10px;}

.featuresItemBox .gridRow {  margin-bottom: 20px;  margin-left: -10px; margin-right: -10px;} 

.featuresItemBox .featuresItem .infoIconPart { min-width: 144px;}


.featuresItemBox .leftColorBox svg{ width: 50%; }
.featuresItemBox .rightColorBox {right: -35%; bottom: -28%; z-index: -1;}
.featuresItemBox .rightColorBox svg{ width: 50%; }

.whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsDetailHolder{ padding: 30px; }

.whyNeedReviews .whyNeedReviewsBg{    width: 510px; left: -150px; top: 340px;}
.whyNeedReviews .whyNeedReviewsBg img{ width: 100%; }
.whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsDetail-ItemList { padding-left: 90px;}

.banner { padding-top: 80px;}
.bannerTxtHolder .infoTxt p.firstlinle { font-size: 22px;}
.banner .rightShape{left: inherit;top: -450px; }
.banner .rightShape svg{width: 100%;}
.featuresItemBox .leftSquareBlueBox{    bottom: -20%;}
.featuresItemBox .leftSquareBlueBox img{    width: 50%;}
.bannerTxtHolder .customerinteractionTxt .shapeHeadngbanner svg{    width: 70%;}


.dotWithColor img { margin-left: -120px; height: 75px;}
.featuresItemBox .dotBottomfull{ width: 175px;     bottom: 60px;}
.featuresItemBox .dotBottomfull img{ max-width: 100%; }

.featuresItemBox .rightCircalColorBox{    width: 135px;}
.featuresItemBox .rightCircalColorBox img{ width: 100%; }

.whyNeedReviews .reviewDotsBg{width: 200px; bottom: -199px;}
.whyNeedReviews .reviewDotsBg img{ width: 100%; }

.GetStarted .planBoxRow:nth-child(2n+1) .planIconDotImg{width: 200px; top: -42px; background-size: 100% auto;}
.GetStarted .planBoxRow:nth-child(2n) .planIconDotImg{width: 200px; bottom:  -117px; background-size: 100% auto;}


.clientsSayingBox .clientsSayingsliderPart .clientFeedback{ padding: 30px; }


.successStories { margin-top: 78px;}
.GetStarted { margin-top: 100px;}

.clientsSayingBox .clientsSayingsliderPart{margin-top: 53px;}
.clientsSayingBox .clientsSayingsliderPart .inverted-commas{width: 120px; top: -71px;left: 0px;}

.clientsSayingBox .clientsSayingsliderPart .inverted-commas img{ width: 100%;  }
.clientsSayingBox .clientsSayingsliderPart .starBox ul{max-width: 100px;}
.clientsSayingBox .clientsSayingsliderPart .starBox ul li{width: 15px;
height: 15px;  background: url(../images/star-select.svg) no-repeat; background-size: 100%;}
.clientsSayingBox .clientsSayingsliderPart .starBox ul li.notSelect {
    background: url(../images/star-notselect.svg) no-repeat; width: 15px;
height: 15px;   background-size: 100%;
}
.featuresItemBox{padding-bottom: 35px;}
.reviewKeepAdvantagesItem .reviewKeepAdvantagesItemBody p { font-size: 14px;  line-height: 24px;}
.GetStarted .summeryTxt p {  font-size: 18px;   line-height: 28px;}

.moreAboutReviewKeep {  margin-top: 0px;}
.featuresAndBenefitsBox { margin-top: 40px;}

.GetStarted .getstartleft{width: 65%;}
.GetStarted .getstartleft img{ width: 100%; }
.GetStarted .getstartRight{width: 95%; bottom: -210px;}
.GetStarted .getstartRight img{ width: 100%; }

.fullWidthPage .fullWidthRow .fullWidthLeft {
    background: var(--colorWhite);
    width: calc( 70% - 35px);
    margin-left: 35px;
}

.formAndListHolder .formBox { max-width: 410px;}
.formAndListHolder .formBox, .formAndListHolder .passwordList{    padding: 0 3%;}
.accountPolicy p { font-size: 12px;     line-height: 20px;}
.fullWidthPage .fullWidthRow .fullWidthLeft .backBtn{    top: 20px;  left: 25px;}
.fullWidthPage .fullWidthRow .fullWidthRight { width: 30%;}


.formBody .gridRow [class*="gridcoll-"] { padding: 0 5px;}
.formBody .gridRow { margin: 0 -5px;}
.formAndListHolder .formBox .formBody{    padding: 15px;}
.formBody .formtitle { font-size: 26px;}

.formBox .mainTitle  { line-height: 40px; }
.formBody p {  font-size: 12px;}
.formBody .allreadyAccountLink { font-size: 14px;}



.fullWithBottom ul li a { font-size: 12px;}
.fullWithBottom p {font-size: 12px;}
.fullWithBottom ul li{    margin: 0 2px; font-size: 12px;}

.formAndListHolder .passwordList .passwordInstraction h1 { font-size: 16px;}
.formAndListHolder .passwordList .passwordInstraction ul li { font-size: 14px; background-size: 10px;
    padding-left: 20px; line-height: 30px;}
.formAndListHolder .passwordList .passwordInstraction ul li.done{background-size: 10px;}


.loginpage.fullWidthPage .fullWidthRow .fullWidthLeft{    margin-left: 35px;}

.loginpage.fullWidthPage .loginInfoText{ padding: 0 5%; }
.loginpage.fullWidthPage .loginInfoText .subTitle{font-size: 26px;     line-height: 36px;}
.loginpage.fullWidthPage .loginInfoText .titleBox{ font-size: 46px;     line-height: 56px; }
.loginpage.fullWidthPage .loginInfoText .pointList ul li{ font-size: 12px; }
.loginpage.fullWidthPage .loginInfoText .pointList { margin-top: 15px;}
.loginpage.fullWidthPage .fullWidthRow .fullWidthRight { width: 53%;}

.billingContainer .gridRow .gridcoll-6:first-child { width: 45%;}
.billingContainer .gridRow .gridcoll-6:last-child { width: 55%;}
label { font-size: 14px;}

.customCheckBox{  font-size: 12px !important; line-height: 20px; }
.paymentBox .cardDetailTitle { font-size: 22px;}
.paymentBox .cardTypeRow .cardTypeRowTxt { font-size: 16px;}
.paymentBox .cardTypeRow .cardTypeRowTxt:after{ height: 2px; }
.subscriptionSelecter label { margin-right: 40px; font-size: 18px !important;}
.planPoint .planPointTitle { font-size: 18px;}
.planPoint .planpointItem ul li { font-size: 13px;}

.planValueBox .planValueInner .planValidityTitle { font-size: 13px;}
.planValueBox .planValueInner .title { font-size: 12px;}
.planValueBox .planValueInner .planValidityvalue { font-size: 14px;}
.planValueBox .totalBilledNow .planValidityTitle, .planValueBox .totalBilledNow .planValidityvalue {
    font-size: 15px;}

    .formBody .formtitle { font-size: 20px;}
    .chooseSubscriptionBox .titleBox { font-size: 20px;}

.innerBanner .innerBannerImgBox .bannerMainImg{   margin: -40px 0 0 -40px;
    max-height: 250px;}
.BannerTopBar .textBox .titleBox { font-size: 16px;}
.BannerTopBar .textBox small { font-size: 12px;}
.BannerTopBar .searchBox { max-width: 320px;}
.BannerTopBar .searchBox .searchFormHolder .searchInput{    padding: 10px 100px 10px 10px;
    height: 40px;
        border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;

    }

    .BannerTopBar .searchBox .searchFormHolder .submitBtn{
          min-width: 80px;
              font-size: 16px;
    }

    .BannerBottomBar .titleBox{    font-size: 32px;    line-height: 42px;}
    .BannerBottomBar a { font-size: 16px;}
.BannerTopBar {  margin-bottom: 30px;}
.plansTabsBox .tabHeadBox ul li a{
     font-size: 14px;
    padding: 15px 18px;
    min-width: 200px;
    display: inline-block;
    text-align: center;
    height: auto;
    line-height: 20px;
}

.planPriceTable.mostPopularTag:after{    width: 210px;     margin-left: -105px;}
.planPriceTable .planPriceTableHead .planGetStartedBtn .takePlanBtn{    min-width: 150px;
    font-size: 18px; height: 50px;}
    .planPriceTable .planPriceTableHead .planPriceBox .planPriceBoxHolder {
    font-size: 46px;     line-height: 90px}


    .planPriceTable .planPriceTableHead .planPriceBox sub{
      top: 2px;
    left: -10px;
    font-size: 19px;
    }
.planPriceTable .planPriceTableHead .planPriceBox sup {
       bottom: 5px;
    right: -32px;
    font-size: 18px;
  }

.planPriceTable .planPriceTableHead .planNameBox{
      background: url(../images/planPriceHeaderBg.svg) no-repeat;
    background-position: top center;
    background-size: auto 720%;
    min-height: 150px;
    padding: 25px 15px 0
}
.planPriceTable .planPriceTableBody {  margin-top: 20px;}
.planPriceTable .planPriceTableBody .tryitout {  font-size: 16px;}
.plansTabsBody .gridRow {  margin: 0 -10px;}
.plansTabsBody .gridRow [class*="gridcoll-"] { padding: 0 10px;}

.planPriceTable .planPriceTableBody .planFeaturesList ul li{
      padding: 15px 0;
          font-size: 14px;
              background-position: left top 14px;
                
                      padding-left: 20px;
    line-height: 20px;
    background-size: 18px;
}

.bodyContainer, .headerContainer {  max-width: 95%;}
.reviewKeepAdvantagesItem{padding: 25px;}
.reviewKeepAdvantagesItem .reviewKeepAdvantagesItemHeader .ItemiconBox { width: 100px; min-width: 100px;   height: 100px;}
.reviewKeepAdvantagesItem .reviewKeepAdvantagesItemHeader .ItemTitleBox { font-size: 18px;}
  /*end of desktop view*/


}








/* Large desktops and laptops */
@media (min-width: 1620px) {

    body{ font-size: 18px; }

}

/* Landscape tablets and medium desktops */
@media (min-width: 992px) and (max-width: 1199px) {

}

/* Portrait tablets and small desktops */
@media (min-width: 768px) and (max-width: 991px) {

  .gridRow  [class*="gridcoll-"]{ width: 100%; }
    header .MenuBox ul li.mobileMenuItem{ display: block; }
    .mobileMenuBox{ display: block;     margin-left: 5px;     margin-top: 5px; position: relative;  z-index: 7; }
    .MenuBox{    
    position: fixed;
    top: 68px;
    width: 100%;
    left: -100%;
    bottom: 0;
    background: rgba(3,78,162,0.98);
    z-index: 5;
    transition:all 0.5s ease; 
    }
    header .MenuBox ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    padding: 15px;

    }
    header .MenuBox ul li.haveSubmenu.openMenu .subMenuBox {

    height: auto;
        z-index: 8;
    }
    header .MenuBox ul li.haveSubmenu.openMenu .subMenuBox li > a{
    color: var(--colorBlue);

    }
    .mobileMenuBox svg{ display: none;     margin-left: 10px; }
    .mobileMenuBox.menuOpen{ position: relative; width: 27px; height: 18px; }
    .mobileMenuBox.menuOpen svg{ display: block; }
    .mobileMenuBox.menuOpen img{ display: none; }

    header .MenuBox ul > li{ padding:20px 15px; border-bottom: solid 1px rgba(255,255,255,0.1);     width: 100%;  }
    header .MenuBox ul li a:hover, header .MenuBox ul li.haveSubmenu.openMenu a {  color: var(--colorWhite); }
    header .MenuBox ul > li > a{ color: var(--colorWhite); }
    .MenuBox.openMenu{ left: 0; }
    .bookDemo{ position: relative; background-color:  transparent;  }
    .bookDemo span{ display: none; }
    .bookDemo .bookDemoBtn img{ display: none; }
    .signInandSignUp{ display: none; }
    .bookDemo .bookDemoBtn{
      font-size: 12px;
    height: 29px;
    line-height: 14px;
    min-width: 114px;
    }

    .logoBox img { width: 121px;}

    .banner {  padding-top: 154px;}
    .bannerTxtHolder .winEveryTxt { font-size: 24px;     margin-bottom: 5px;}
    .bannerTxtHolder .customerinteractionTxt { font-size:48px; line-height: 47px; margin-bottom: 17px;}
    .bannerTxtHolder .infoTxt p {  font-size: 14px;}

    .rkBtn{
      padding: 10px 69px 10px 19px;
          font-size: 16px;
          line-height: 20px;
            margin-top: 36px;
         margin-bottom: 54px;
    }
    .rkBtn .cercal-icon{width: 24px;height: 24px;     top: 8px;   right: 15px;}
    .rkBtn .cercal-icon img { width: 4.52px;}

    .banner .bannerImgBox{ display: block; }

    .banner .shapeCircleBlue,
    .banner  .shapeCircleYellow,
    .banner  .shapeSquareBlue ,
    .banner  .shapeHeadngbanner  { display: none; }
    .banner .dotWithColor {width: 276px;}
    .banner .dotWithColor img { margin-left: -160px;  height: 80px;}
    .featuresAndBenefitsBox {  margin-top: 45px;}

    .featuresAndBenefitsBox .mainTitle .polygonBlue svg{ width: 100%; height: 100px;     filter: blur(3px);
    -webkit-filter: blur(3px); }
    .featuresAndBenefitsBox .mainTitle .polygonBlue{    top: -110px;  left: -5%;}

    .mainTitle{ font-size: 30px; line-height: 34px}
    .text-center.mb-35{ margin-bottom: 20px !important; }
    .featuresAndBenefitsBox .shapeCircleYellow { top: -10px; right: 0;width: 13px; height: 13px;}

    .reviewKeepAdvantagesItem .reviewKeepAdvantagesItemHeader{    flex-direction: column;     margin-bottom: 0;}
    .reviewKeepAdvantagesItem .reviewKeepAdvantagesItemBody { display: none; }
    .featuresItemBox .gridRow{align-items: baseline;}
    .featuresItemBox .gridRow  [class*="gridcoll-"]:last-child .reviewKeepAdvantagesItem{ margin-bottom: 0px; }
    .reviewKeepAdvantagesItem .reviewKeepAdvantagesItemHeader .ItemTitleBox{ margin-top: 18px; text-align: center; font-size: 12px; }
    .reviewKeepAdvantagesItem .reviewKeepAdvantagesItemHeader .ItemTitleBox br{ display: none; }
    .reviewKeepAdvantagesItem{ margin-bottom: 16px; }
    .allFeatures{ margin-bottom: 0px; }
    .successStories {  margin-top: 0;}

    .successStories .titleTwoline{ font-size:30px; line-height: 39px; }
    .successStories .titleTwoline span{ font-size:45px; line-height: 39px; }


    .successStories .rightSidetxt{ font-size: 16px; text-align: left; margin-top: 30px; color: inherit; }
    .successStories .rightSidetxt img, 
    .successStories .rightSidetxt:after{ display: none; }
    .successStories .successStoriesSummery p {
    line-height: 22px;
    font-size: 14px;
    }

    .successStories .mt-40{ margin-top:30px !important;  }
    .successStoriesItemBox .successStoriesItem{ width: 100%; border-right:  none; padding: 15px;    border-bottom:  solid 1px var(--colorStoriBorder); padding-bottom: 38px;}
    .successStoriesItemBox .successStoriesItem:last-child{ border-bottom: none; }

    .successStoriesItemBox .storiBGShape{    top: -280px;}

    .successStoriesItemBox .bodyContainer{ padding: 0px; }

    .successStoriesItemBox .successStoriesItem .storiesImgBox .storiesImgBoxHolder .logoImg {  max-width: 70%; max-height: 100px;}
    .successStoriesItemBox .successStoriesItem .storiesImgBox .storiesImgBoxHolder{    width: 305px;    height: 200px;}
    .successStoriesItemBox .successStoriesItem .storiesTxtBox .storiesTitle {  font-size: 53px;}
    .successStoriesItemBox .successStoriesItem .storiesTxtBox .storiesSubTitle { font-size: 20px;}
    .successStoriesItemBox .successStoriesItem .storiesTxtBox .storiesInfo p { font-size: 12px; line-height: 18px; text-align: center;}
    .successStoriesItemBox .successStoriesItem .storiesTxtBox .storiesInfo{    margin-top: 25px;}

    .centerArrowImg img{ max-width: 17px; }
    .whyNeedReviews { margin-top: 50px;}
    .whyNeedReviews .summeryBox p {  font-size: 14px;}

    .whyNeedReviews .whyNeedReviewsDetail{    margin-left: 0;  width: 100%;}
    .whyNeedReviews .reviewDotsBg {  position: absolute; right: -250px;  bottom: -261px;}

    .whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsDetailHolder{    padding: 21px 18px;}
    .whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsDetail-info p { font-size: 12px;    line-height: 20px; margin-bottom: 19px;}
    .whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsDetail-ItemList { padding-left: 0; padding-right: 0;}
    .whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsMobileImg,
    .whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsGirlImg{ display: none; }
    .whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsDetail-ItemList .infoHolderBox p{ font-size: 12px; line-height: 18px; }
    .whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsDetail-ItemList .infoHolderBox {  display: flex; justify-content: space-between; margin-bottom: 15px;}
    .whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsDetail-ItemList .infoHolderBox img{  max-height: 19px; margin-right: 16px; }



    .GetStarted {  padding-top: 70px;}
    .GetStarted .summeryTxt p { font-size: 14px; line-height: 19px;margin-bottom: 10px; text-align: left;}

    .GetStarted  .howitWorks{     justify-content: flex-start;     font-size: 16px; }
    .howitWorks img {  margin-left: 15px;  max-width: 41px;}
    .GetStarted .planBoxRow  .gridcoll-8{ order: 2; }
    .GetStarted .planBoxRow  .gridcoll-4{ order: 1; margin-bottom: 38px; }

    .GetStarted .planIconBox{width: 100%;  height: auto;     padding: 40px 19%;     text-align: center;}

    .GetStarted .infoHolderpart .numberBox { font-size: 90px;      left: -70px;  top: -20px;}
    .GetStarted .infoHolderpart {  margin-left: 78px;}

    .GetStarted .infoHolderpart .title {  font-size: 20px;}
    .GetStarted .infoHolderpart .infoText { font-size: 12px; line-height: 20px;}
    .GetStarted .planBoxRow { margin-bottom: 56px;}

    .GetStarted .planBoxRow:nth-child(odd) .infoHolderpart{    margin-right: 78px;}
    .GetStarted .planBoxRow:nth-child(odd) .infoHolderpart .numberBox{    right: -70px;}
    .GetStarted .planIconBox img {  width: 91px;}

    .GetStarted .planBoxRow:nth-child(even) .planIconDotImg{right: -145px; bottom: -48px;}
    .GetStarted .planBoxRow:nth-child(odd) .planIconDotImg{    left: -160px;  top: -26px;}

    .clientsSayingBox .clientsSayingsliderPart .inverted-commas {top: -53px;left: 15px; width: 85px;}

    .clientsSayingBox .clientsSayingsliderPart .inverted-commas img{ width: 100%; }
    .clientsSayingBox .clientsSayingsliderPart{    margin-top: 65px;}
    .clientsSayingBox .clientsSayingsliderPart .clientFeedback{ margin-bottom: 15px;     padding: 20px 15px; background-color: var(--colorWhite) }
    .clientsSayingBox .clientsSayingsliderPart .clientFeedback{box-shadow: 0 15px 39px rgba(0,0,0,0.2); 
    -webkit-box-shadow: 0 15px 39px rgba(0,0,0,0.2);
    -moz-box-shadow: 0 15px 39px rgba(0,0,0,0.2); }
    .clientsSayingBox .clientsSayingsliderPart .clientWord p{line-height: 22px;  font-size: 14px; }
    .moreAboutReviewKeep { margin-top: 60px;}

    .moreAboutReviewKeep .titleBox { font-size: 20px;}

    .moreAboutReviewKeep .underLineBtn{    padding: 10px 35px;     font-size: 20px;     margin-bottom: 20px;}

    .startTrial .titleBox { font-size: 20px;     margin-right: 0;  text-align: center;}
    .startTrial .gridcoll-5{ text-align: center !important;  }
    .startTrial .rkBtn{     font-size: 16px;     margin-top: 15px;  margin-bottom: 0px; } 
    .startTrial {  padding: 35px 0;}
    footer .bottomLinkBox li a, footer .copyRihgtBox{    font-size: 10px;}
    footer .copyRihgtBox{    margin-bottom: 0px;}




    .innerBanner.blubg .gridcoll-4 .innerBannerImgBox{ display: none; }

    .innerBanner { padding-top: 90px;}
    .innerBanner .BannerTopBar {    flex-direction: column;}
    .innerBanner .BannerTopBar .textBox{ width: 100% ; margin-bottom: 10px;}
    .BannerTopBar .textBox .titleBox { font-size: 18px; text-align: left;}
    .BannerTopBar .textBox small{ font-size: 14px;  }


    .BannerTopBar .searchBox .searchFormHolder .searchInput{    padding: 10px 100px 10px 15px;     height: 48px;}
    .BannerTopBar .searchBox .searchFormHolder .submitBtn{min-width: 100px;     font-size: 12px;}
    .BannerTopBar { margin-bottom: 30px;}
    .BannerBottomBar .titleBox{    font-size: 24px;     line-height: 29px;}
    .BannerBottomBar a { font-size: 14px;}


    .plansTabsBox .tabHeadBox ul li a{  font-size: 16px; padding: 15px; }
    .plansTabsBox .tabHeadBox {  margin-bottom: 20px;}
    .plansTabs {  margin-top: 20px;}

    .plansTabsBody{ padding:0 10px; }
    .plansTabsBody .gridRow{ margin:0px; }
    .plansTabsBody .gridRow [class*="gridcoll-"] { padding: 0px 0px;     margin-bottom: 30px;}

    .planPriceTable .planPriceTableHead .planGetStartedBtn .takePlanBtn{min-width: 225px;}

    .planPriceTable .planPriceTableHead .planNameBox .planTitle{ display: none; }
    .planPriceTable .planPriceTableHead .planNameBox{    padding: 25px 15px 0; min-height: 100px;}
    .planPriceTable .planPriceTableHead .planNameBox .planSubTitle {  font-size: 16px;}

    .planPriceTable .planPriceTableHead .planPriceBox .planPriceBoxHolder{    font-size: 60px;     line-height: 72px;}
    .planPriceTable .planPriceTableHead .pricePlanNamesmall {  font-size: 12px;}

    .planPriceTable .planPriceTableHead .planPriceBox sub { position: absolute; top: -6px; left: -10px; font-size: 19px; line-height: 58px;}

    .planPriceTable .planPriceTableHead .planGetStartedBtn .takePlanBtn{    padding: 10px; font-size: 14px;     height: 38px; line-height: 17px;}
    .planPriceTable .planPriceTableBody { margin-top: 0;  padding: 32px 25px; }
    .planPriceTable .planPriceTableBody .tryitout {  font-size: 14px;}
    .planPriceTable .planPriceTableBody .planFeaturesList ul li{    padding: 10px 0;     font-size: 12px;     background: url(../images/priceTick.svg) no-repeat;
    background-position: left top 7px; padding-left: 35px;}

    footer{padding: 15px 0 25px;}


    .fullWidthPage .fullWidthRow .fullWidthRight{ display: none; }
    .fullWidthPage .fullWidthRow .fullWidthLeft{    width: 100%;  margin-left: 15px;     margin-right: 15px;}

    .formAndListHolder .passwordList{ display: none; }
    .fullWidthPage .fullWidthRow .fullWidthLeft .backBtn{ left: 16px; }
.formBody .formtitle { font-size: 18px;}
.formBody p {  font-size: 14px;     margin-bottom: 24px;}
.formBody .allreadyAccountLink{ display: none; }
.formAndListHolder .formBox .formBody{    padding: 16px;}
.formAndListHolder .MobileOpenForPass{ margin-bottom: 30px; }
.formAndListHolder .MobileOpenForPass .passwordList{ display: block; }
.formAndListHolder .passwordList .passwordInstraction h1{ display: none; }
.formAndListHolder .MobileOpenForPass .passwordList .passwordInstraction ul{ width: 100%; }
.formAndListHolder .MobileOpenForPass .passwordList .passwordInstraction ul li{    font-size: 12px; line-height:14px;
padding-left: 12px; 
    background: url(../images/strongRightMark.svg) no-repeat;
    background-size: 8px;
        background-position: top 3px left;
}
.formAndListHolder .passwordList .passwordInstraction ul li.done{
      background: url(../images/dalRightmark.svg) no-repeat;
        background-size: 8px;
        background-position: top 3px left;
}
.formAndListHolder .MobileOpenForPass .passwordList .passwordInstraction{ margin: 0px;     width: 100%;
    max-width: 100%; }
.formAndListHolder .MobileOpenForPass .passwordList .passwordInstraction ul li{ margin-bottom: 15px; width: 48%; flex-grow: 1; }

.formAndListHolder .MobileOpenForPass .passwordList .passwordInstraction ul li:nth-last-child(1){ margin-bottom: 0px; }

.formAndListHolder .MobileOpenForPass .passwordList .passwordInstraction ul{ display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; }
.formBody .accountPolicy{ margin-top: 30px  !important; }
.formBody .accountPolicy  p {  font-size: 11px;}
.fullWithBottom ul li{    margin: 0 2px;}
.fullWithBottom p, .fullWithBottom ul li a {   font-size: 12px;}


.loginpage.fullWidthPage .fullWidthRow .fullWidthLeft { width: 100%; margin-left: 15px;}
.loginpage.fullWidthPage .allreadyAccountLink { display: block; }
.loginpage.fullWidthPage .formBody {  margin: 0% 0; border:none;}
.formBody .allreadyAccountLink {  font-size: 14px; margin-bottom: 15px !important;}
.formBody .allreadyAccountLink  a{ display: block; width: 100%; }
.accountPolicy.inlineBox-center a { margin: 0 15px; font-size: 14px;}


.fullWidthPage.loginpage .fullWithBottom { border-top: solid 1px var(--colorBorder); padding-top: 10px;     margin: 0 -15px; padding-bottom: 10px;     margin-top: 25px !important; }

.contactPage{ width: 100%; }

.contactBottomPage .contactForm{    width: auto; left: 15px;right: 15px;}
.locationMapbox { margin-top: 70px;}
.contactBottomPage .contactForm{    bottom: 32px; padding: 20px 16px;}
.contactBottomPage .contactForm .TitleBox {  font-size: 18px; line-height: 22px; margin-bottom: 20px !important;}

.contactBottomPage .gridcoll-6:first-child{  order: 2; }
.contactBottomPage .gridcoll-6:last-child{  order: 1;     padding-top: 290px; }
.coantctInfoBox .companyName { font-size: 28px;}

.contactDetailBox .gridcoll-4 { margin-top: 68px; }
.contactDetailBox .gridcoll-4 ul li a{ font-size: 20px; }
.coantctInfoBox .socialMediaBox{ display: none; }
.contactBottomPage{    padding: 70px 0 50px;}
.contentwrapper{    padding-top: 95px;}
.billingContainer {    margin-top: 0px !important;}
.paymentBox .cardDetailTitle { font-size: 18px;}
.cardTypeImg img{ width: 37px; }

.paymentBox .cardTypeRow .cardTypeRowTxt {  font-size: 14px;}
.paymentBox .cardDetailTitleRow {  margin-bottom: 0;}
.customCheckBox{ font-size: 12px !important;line-height: 26px; }
.chooseSubscriptionBox .titleBox{ font-size: 18px; text-align: center; }
.subscriptionSelecter{    display: flex;   justify-content: space-around;}
.subscriptionSelecter label { margin-right: 0px;  font-size: 14px !important;}
.planPoint {  margin-top: 20px;}

.planPoint .planPointTitle {  font-size: 14px;     margin-bottom: 15px;}

.planPoint .planpointItem ul li { font-size: 12px;}
.planValueBox .planValueInner .planValidityTitle {  font-size: 12px;}
.planValueBox .planValueInner .title {  font-size: 12px; max-width: 75%;}
.planValueBox .totalBilledNow .planValidityTitle, .planValueBox .totalBilledNow .planValidityvalue {  font-size: 14px;}
.planValueBox .totalBilledNow {  padding: 20px 0 0px;}
.planValueBox {  padding:20px 0 20px; margin-bottom: 31px;}
.billingBottomImg{ display: none; }


.featuresPage{ width: 100%; padding-top: 70px;}
.featuresBanner .mainTitle{ font-size: 50px; line-height: 61px; }
.featuresBanner img{ max-width: 100%;  }
.featuresBanner .gridcoll-6:first-child{ order: 2; }
.featuresBanner .gridcoll-6:last-child{ order: 1; text-align: center; margin-bottom: 20px; }
.featuresBenefitsList{    margin: 50px auto;}
.featuresBenefitsListRow{    flex-direction: column !important; margin-bottom: 45px !important;}
.featuresBenefitsListRow .featuresBenefitsListImg { max-width: 138px; min-width: 138px; height: 138px;}
.featuresBenefitsListRow .featuresBenefitsListImg  img{ max-height: 70px; }
.featuresBenefitsListRow .featuresBenefitsListInfo{    padding: 15px;   text-align: center !important;}

.featuresBenefitsListRow .featuresBenefitsListInfo .benifitsTitle{    font-size: 30px;      margin-top: 20px;   margin-bottom: 20px;  line-height: 37px;}
.featuresBenefitsListRow .featuresBenefitsListInfo .benifitsText p { font-size: 18px; line-height: 27px;}
.featuresBenefitsListRow:nth-child(even) .featuresBenefitsListInfo{ padding: 15px !important }

header .MenuBox .subMenuBox.megaMenuBox { min-width: 730px;}

.desktopPlanTabsData{ display: none; }
.mobilesubTabsBox{ display: block; }

.planPriceTable .planPriceTableHead .planPriceBox sup{    bottom: 0;  right: -58px;}
.plansTabsBody .planPriceTable{height: auto;   padding-bottom: 185px;}
.planPriceTable .planPriceTableHead .planNameBox{ background: none;     min-height: 50px;  }

.formAndListHolder .formBox{ margin:0 auto;  }

}

/* Landscape phones and portrait tablets */
@media (max-width: 767px) {

    .gridRow  [class*="gridcoll-"]{ width: 100%; }
    header .MenuBox ul li.mobileMenuItem{ display: block; }
    .mobileMenuBox{ display: block;     margin-left: 5px;     margin-top: 5px; position: relative;  z-index: 7; }
    .MenuBox{    
    position: fixed;
    top: 68px;
    width: 100%;
    left: -100%;
    bottom: 0;
    background: rgba(3,78,162,0.98);
    z-index: 5;
    transition:all 0.5s ease; 
    }
    header .MenuBox ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    padding: 15px;

    }
    header .MenuBox ul li.haveSubmenu.openMenu .subMenuBox {

    height: auto;
        z-index: 8;
    }
    header .MenuBox ul li.haveSubmenu.openMenu .subMenuBox li > a{
    color: var(--colorBlue);

    }
    .mobileMenuBox svg{ display: none;     margin-left: 10px; }
    .mobileMenuBox.menuOpen{ position: relative; width: 27px; height: 18px; }
    .mobileMenuBox.menuOpen svg{ display: block; }
    .mobileMenuBox.menuOpen img{ display: none; }

    header .MenuBox ul > li{ padding: 20px 15px; border-bottom: solid 1px rgba(255,255,255,0.1);     width: 100%;  }
    header .MenuBox ul li a:hover, header .MenuBox ul li.haveSubmenu.openMenu a { color: var(--colorWhite); }
    header .MenuBox ul > li > a{ color: var(--colorWhite); }
    .MenuBox.openMenu{ left: 0; }
    .bookDemo{ position: relative; background-color:  transparent;  }
    .bookDemo span{ display: none; }
    .bookDemo .bookDemoBtn img{ display: none; }
    .signInandSignUp{ display: none; }
    .bookDemo .bookDemoBtn{
      font-size: 12px;
    height: 29px;
    line-height: 14px;
    min-width: 114px;
    }

    .logoBox img { width: 121px;}

    .banner {  padding-top: 104px;}
    .bannerTxtHolder .winEveryTxt { font-size: 24px;     margin-bottom: 5px;}
    .bannerTxtHolder .customerinteractionTxt { font-size:48px; line-height: 47px; margin-bottom: 17px;}
    .bannerTxtHolder .infoTxt p {  font-size: 14px;}

    .rkBtn{
      padding: 10px 69px 10px 19px;
          font-size: 16px;
          line-height: 20px;
            margin-top: 36px;
         margin-bottom: 54px;
    }
    .rkBtn .cercal-icon{width: 24px;height: 24px;     top: 8px;   right: 15px;}
    .rkBtn .cercal-icon img { width: 4.52px;}

    .banner .bannerImgBox{ display: block; }

    .banner .shapeCircleBlue,
    .banner  .shapeCircleYellow,
    .banner  .shapeSquareBlue ,
    .banner  .shapeHeadngbanner  { display: none; }
    .banner .dotWithColor {width: 276px;}
    .banner .dotWithColor img { margin-left: -160px;  height: 80px;}
    .featuresAndBenefitsBox {  margin-top: 45px;}

    .featuresAndBenefitsBox .mainTitle .polygonBlue svg{ width: 100%; height: 100px;     filter: blur(3px);
    -webkit-filter: blur(3px); }
    .featuresAndBenefitsBox .mainTitle .polygonBlue{    top: -110px;  left: -5%;}

    .mainTitle{ font-size: 30px; line-height: 34px}
    .text-center.mb-35{ margin-bottom: 20px !important; }
    .featuresAndBenefitsBox .shapeCircleYellow { top: -10px; right: 0;width: 13px; height: 13px;}

    .reviewKeepAdvantagesItem .reviewKeepAdvantagesItemHeader{    flex-direction: column;     margin-bottom: 0;}
    .reviewKeepAdvantagesItem .reviewKeepAdvantagesItemBody { display: none; }
    .featuresItemBox .gridRow{align-items: baseline;}
    .featuresItemBox .gridRow  [class*="gridcoll-"]:last-child .reviewKeepAdvantagesItem{ margin-bottom: 0px; }
    .reviewKeepAdvantagesItem .reviewKeepAdvantagesItemHeader .ItemTitleBox{ margin-top: 18px; text-align: center; font-size: 12px; }
    .reviewKeepAdvantagesItem .reviewKeepAdvantagesItemHeader .ItemTitleBox br{ display: none; }
    .reviewKeepAdvantagesItem{ margin-bottom: 16px; }
    .allFeatures{ margin-bottom: 0px; }
    .successStories {  margin-top: 0;}

    .successStories .titleTwoline{ font-size:30px; line-height: 39px; }
    .successStories .titleTwoline span{ font-size:45px; line-height: 39px; }


    .successStories .rightSidetxt{ font-size: 16px; text-align: left; margin-top: 30px; color: inherit; }
    .successStories .rightSidetxt img, 
    .successStories .rightSidetxt:after{ display: none; }
    .successStories .successStoriesSummery p {
    line-height: 22px;
    font-size: 14px;
    }

    .successStories .mt-40{ margin-top:30px !important;  }
    .successStoriesItemBox .successStoriesItem{ width: 100%; border-right:  none; padding: 15px;    border-bottom:  solid 1px var(--colorStoriBorder); padding-bottom: 38px;}
    .successStoriesItemBox .successStoriesItem:last-child{ border-bottom: none; }

    .successStoriesItemBox .storiBGShape{    top: -280px;}

    .successStoriesItemBox .bodyContainer{ padding: 0px; }

    .successStoriesItemBox .successStoriesItem .storiesImgBox .storiesImgBoxHolder .logoImg {  max-width: 70%; max-height: 100px;}
    .successStoriesItemBox .successStoriesItem .storiesImgBox .storiesImgBoxHolder{    width: 100%;    height: 140px;}
    .successStoriesItemBox .successStoriesItem .storiesTxtBox .storiesTitle {  font-size: 30px;}
    .successStoriesItemBox .successStoriesItem .storiesTxtBox .storiesSubTitle { font-size: 20px;}
    .successStoriesItemBox .successStoriesItem .storiesTxtBox .storiesInfo p { font-size: 12px; line-height: 18px; text-align: center;}
    .successStoriesItemBox .successStoriesItem .storiesTxtBox .storiesInfo{    margin-top: 25px;}

    .centerArrowImg img{ max-width: 17px; }
    .whyNeedReviews { margin-top: 50px;}
    .whyNeedReviews .summeryBox p {  font-size: 14px;}

    .whyNeedReviews .whyNeedReviewsDetail{    margin-left: 0;  width: 100%;}
    .whyNeedReviews .reviewDotsBg {  position: absolute; right: -250px;  bottom: -261px;}

    .whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsDetailHolder{    padding: 21px 18px;}
    .whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsDetail-info p { font-size: 12px;    line-height: 20px; margin-bottom: 19px;}
    .whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsDetail-ItemList { padding-left: 0; padding-right: 0;}
    .whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsMobileImg,
    .whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsGirlImg{ display: none; }
    .whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsDetail-ItemList .infoHolderBox p{ font-size: 12px; line-height: 18px; }
    .whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsDetail-ItemList .infoHolderBox {  display: flex; justify-content: space-between; margin-bottom: 15px;}
    .whyNeedReviews .whyNeedReviewsDetail .whyNeedReviewsDetail-ItemList .infoHolderBox img{  max-height: 19px; margin-right: 16px; }



    .GetStarted {  padding-top: 70px;}
    .GetStarted .summeryTxt p { font-size: 14px; line-height: 19px;margin-bottom: 10px; text-align: left;}

    .GetStarted  .howitWorks{     justify-content: flex-start;     font-size: 16px; }
    .howitWorks img {  margin-left: 15px;  max-width: 41px;}
    .GetStarted .planBoxRow  .gridcoll-8{ order: 2; }
    .GetStarted .planBoxRow  .gridcoll-4{ order: 1; margin-bottom: 38px; }

    .GetStarted .planIconBox{width: 100%;  height: auto;     padding: 40px 19%;     text-align: center;}

    .GetStarted .infoHolderpart .numberBox { font-size: 90px;      left: -70px;  top: -20px;}
    .GetStarted .infoHolderpart {  margin-left: 78px;}

    .GetStarted .infoHolderpart .title {  font-size: 20px;}
    .GetStarted .infoHolderpart .infoText { font-size: 12px; line-height: 20px;}
    .GetStarted .planBoxRow { margin-bottom: 56px;}

    .GetStarted .planBoxRow:nth-child(odd) .infoHolderpart{    margin-right: 78px;}
    .GetStarted .planBoxRow:nth-child(odd) .infoHolderpart .numberBox{    right: -70px;}
    .GetStarted .planIconBox img {  width: 91px;}

    .GetStarted .planBoxRow:nth-child(even) .planIconDotImg{right: -145px; bottom: -48px;}
    .GetStarted .planBoxRow:nth-child(odd) .planIconDotImg{    left: -160px;  top: -26px;}

    .clientsSayingBox .clientsSayingsliderPart .inverted-commas {top: -53px;left: 15px; width: 85px;}

    .clientsSayingBox .clientsSayingsliderPart .inverted-commas img{ width: 100%; }
    .clientsSayingBox .clientsSayingsliderPart{    margin-top: 65px;}
    .clientsSayingBox .clientsSayingsliderPart .clientFeedback{ margin-bottom: 15px;     padding: 20px 15px;  }
    .clientsSayingBox .clientsSayingsliderPart .clientFeedback:hover{box-shadow: 0 15px 39px rgba(0,0,0,0.2); 
    -webkit-box-shadow: 0 15px 39px rgba(0,0,0,0.2);
    background-color: var(--colorWhite)
    -moz-box-shadow: 0 15px 39px rgba(0,0,0,0.2); }
    .clientsSayingBox .clientsSayingsliderPart .clientWord p{line-height: 22px;  font-size: 14px; }
    .moreAboutReviewKeep { margin-top: 60px;}

    .moreAboutReviewKeep .titleBox { font-size: 20px;}

    .moreAboutReviewKeep .underLineBtn{    padding: 10px 35px;     font-size: 20px;     margin-bottom: 20px;}

    .startTrial .titleBox { font-size: 20px;     margin-right: 0;  text-align: center;}
    .startTrial .gridcoll-5{ text-align: center !important;  }
    .startTrial .rkBtn{     font-size: 16px;     margin-top: 15px;  margin-bottom: 0px; } 
    .startTrial {  padding: 35px 0;}
    footer .bottomLinkBox li a, footer .copyRihgtBox{    font-size: 10px;}
    footer .copyRihgtBox{    margin-bottom: 0px;}




    .innerBanner.blubg .gridcoll-4 .innerBannerImgBox{ display: none; }

    .innerBanner { padding-top: 90px;}
    .innerBanner .BannerTopBar {    flex-direction: column;}
    .innerBanner .BannerTopBar .textBox{ width: 100% ; margin-bottom: 10px;}
    .BannerTopBar .textBox .titleBox { font-size: 18px; text-align: left;}
    .BannerTopBar .textBox small{ font-size: 14px;  }


    .BannerTopBar .searchBox .searchFormHolder .searchInput{    padding: 10px 100px 10px 15px;     height: 48px;}
    .BannerTopBar .searchBox .searchFormHolder .submitBtn{min-width: 100px;     font-size: 12px;}
    .BannerTopBar { margin-bottom: 30px;}
    .BannerBottomBar .titleBox{    font-size: 24px;     line-height: 29px;}
    .BannerBottomBar a { font-size: 14px;}


    .plansTabsBox .tabHeadBox ul li a{  font-size: 16px; padding: 15px; }
    .plansTabsBox .tabHeadBox {  margin-bottom: 20px;}
    .plansTabs {  margin-top: 20px;}

    .plansTabsBody{ padding:0 10px; }
    .plansTabsBody .gridRow{ margin:0px; }
    .plansTabsBody .gridRow [class*="gridcoll-"] { padding: 0px 0px;     margin-bottom: 30px;}

    .planPriceTable .planPriceTableHead .planGetStartedBtn .takePlanBtn{min-width: 225px;}

    .planPriceTable .planPriceTableHead .planNameBox .planTitle{ display: none; }
    .planPriceTable .planPriceTableHead .planNameBox{    padding: 25px 15px 0; min-height: 100px;}
    .planPriceTable .planPriceTableHead .planNameBox .planSubTitle {  font-size: 16px;}

    .planPriceTable .planPriceTableHead .planPriceBox .planPriceBoxHolder{    font-size: 60px;     line-height: 72px;}
    .planPriceTable .planPriceTableHead .pricePlanNamesmall {  font-size: 12px;}

    .planPriceTable .planPriceTableHead .planPriceBox sub { position: absolute; top: -6px; left: -10px; font-size: 19px; line-height: 58px;}

    .planPriceTable .planPriceTableHead .planGetStartedBtn .takePlanBtn{    padding: 10px; font-size: 14px;     height: 38px; line-height: 17px;}
    .planPriceTable .planPriceTableBody { margin-top: 0;  padding: 32px 25px; }
    .planPriceTable .planPriceTableBody .tryitout {  font-size: 14px;}
    .planPriceTable .planPriceTableBody .planFeaturesList ul li{    padding: 10px 0;     font-size: 12px;     background: url(../images/priceTick.svg) no-repeat;
    background-position: left top 7px; padding-left: 35px;}

    footer{padding: 15px 0 25px;}


    .fullWidthPage .fullWidthRow .fullWidthRight{ display: none; }
    .fullWidthPage .fullWidthRow .fullWidthLeft{    width: 100%;  margin-left: 15px;     margin-right: 15px;}

    .formAndListHolder .passwordList{ display: none; }
    .fullWidthPage .fullWidthRow .fullWidthLeft .backBtn{ left: 16px; }
.formBody .formtitle { font-size: 18px;}
.formBody p {  font-size: 14px;     margin-bottom: 24px;}
.formBody .allreadyAccountLink{ display: none; }
.formAndListHolder .formBox .formBody{    padding: 16px;}
.formAndListHolder .MobileOpenForPass{ margin-bottom: 30px; }
.formAndListHolder .MobileOpenForPass .passwordList{ display: block; }
.formAndListHolder .passwordList .passwordInstraction h1{ display: none; }
.formAndListHolder .MobileOpenForPass .passwordList .passwordInstraction ul{ width: 100%; }
.formAndListHolder .MobileOpenForPass .passwordList .passwordInstraction ul li{    font-size: 12px; line-height:14px;
padding-left: 12px; 
    background: url(../images/strongRightMark.svg) no-repeat;
    background-size: 8px;
        background-position: top 3px left;
}
.formAndListHolder .passwordList .passwordInstraction ul li.done{
      background: url(../images/dalRightmark.svg) no-repeat;
        background-size: 8px;
        background-position: top 3px left;
}
.formAndListHolder .MobileOpenForPass .passwordList .passwordInstraction{ margin: 0px;     width: 100%;
    max-width: 100%; }
.formAndListHolder .MobileOpenForPass .passwordList .passwordInstraction ul li{ margin-bottom: 15px; width: 48%; flex-grow: 1; }

.formAndListHolder .MobileOpenForPass .passwordList .passwordInstraction ul li:nth-last-child(1){ margin-bottom: 0px; }

.formAndListHolder .MobileOpenForPass .passwordList .passwordInstraction ul{ display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; }
.formBody .accountPolicy{ margin-top: 30px  !important; }
.formBody .accountPolicy  p {  font-size: 11px;}
.fullWithBottom ul li{    margin: 0 2px;}
.fullWithBottom p, .fullWithBottom ul li a {   font-size: 12px;}


.loginpage.fullWidthPage .fullWidthRow .fullWidthLeft { width: 100%; margin-left: 15px;}
.loginpage.fullWidthPage .allreadyAccountLink { display: block; }
.loginpage.fullWidthPage .formBody {  margin: 0% 0; border:none;}
.formBody .allreadyAccountLink {  font-size: 14px; margin-bottom: 15px !important;}
.formBody .allreadyAccountLink  a{ display: block; width: 100%; }
.accountPolicy.inlineBox-center a { margin: 0 15px; font-size: 14px;}


.fullWidthPage.loginpage .fullWithBottom { border-top: solid 1px var(--colorBorder); padding-top: 10px;     margin: 0 -15px; padding-bottom: 10px;     margin-top: 25px !important; }

.contactPage{ width: 100%; }

.contactBottomPage .contactForm{    width: auto; left: 15px;right: 15px;}
.locationMapbox { margin-top: 70px;}
.contactBottomPage .contactForm{    bottom: 32px; padding: 20px 16px;}
.contactBottomPage .contactForm .TitleBox {  font-size: 18px; line-height: 22px; margin-bottom: 20px !important;}

.contactBottomPage .gridcoll-6:first-child{  order: 2; }
.contactBottomPage .gridcoll-6:last-child{  order: 1;     padding-top: 290px; }
.coantctInfoBox .companyName { font-size: 28px;}

.contactDetailBox .gridcoll-4 { margin-top: 68px; }
.contactDetailBox .gridcoll-4 ul li a{ font-size: 20px; }
.coantctInfoBox .socialMediaBox{ display: none; }
.contactBottomPage{    padding: 70px 0 50px;}
.contentwrapper{    padding-top: 95px;}
.billingContainer {    margin-top: 0px !important;}
.paymentBox .cardDetailTitle { font-size: 18px;}
.cardTypeImg img{ width: 37px; }

.paymentBox .cardTypeRow .cardTypeRowTxt {  font-size: 14px;}
.paymentBox .cardDetailTitleRow {  margin-bottom: 0;}
.customCheckBox{ font-size: 12px !important;line-height: 26px; }
.chooseSubscriptionBox .titleBox{ font-size: 18px; text-align: center; }
.subscriptionSelecter{    display: flex;   justify-content: space-around;}
.subscriptionSelecter label { margin-right: 0px;  font-size: 14px !important;}
.planPoint {  margin-top: 20px;}

.planPoint .planPointTitle {  font-size: 14px;     margin-bottom: 15px;}

.planPoint .planpointItem ul li { font-size: 12px;}
.planValueBox .planValueInner .planValidityTitle {  font-size: 12px;}
.planValueBox .planValueInner .title {  font-size: 12px; max-width: 75%;}
.planValueBox .totalBilledNow .planValidityTitle, .planValueBox .totalBilledNow .planValidityvalue {  font-size: 14px;}
.planValueBox .totalBilledNow {  padding: 20px 0 0px;}
.planValueBox {  padding:20px 0 20px; margin-bottom: 31px;}
.billingBottomImg{ display: none; }


.featuresPage{ width: 100%; padding-top: 70px;}
.featuresBanner .mainTitle{ font-size: 50px; line-height: 61px; }
.featuresBanner img{ max-width: 100%;  }
.featuresBanner .gridcoll-6:first-child{ order: 2; }
.featuresBanner .gridcoll-6:last-child{ order: 1; text-align: center; margin-bottom: 20px; }
.featuresBenefitsList{    margin: 50px auto;}
.featuresBenefitsListRow{    flex-direction: column !important; margin-bottom: 45px !important;}
.featuresBenefitsListRow .featuresBenefitsListImg { max-width: 138px; min-width: 138px; height: 138px;}
.featuresBenefitsListRow .featuresBenefitsListImg  img{ max-height: 70px; }
.featuresBenefitsListRow .featuresBenefitsListInfo{    padding: 15px;   text-align: center !important;}

.featuresBenefitsListRow .featuresBenefitsListInfo .benifitsTitle{    font-size: 30px;      margin-top: 20px;   margin-bottom: 20px;  line-height: 37px;}
.featuresBenefitsListRow .featuresBenefitsListInfo .benifitsText p { font-size: 18px; line-height: 27px;}
.featuresBenefitsListRow:nth-child(even) .featuresBenefitsListInfo{ padding: 15px !important }

header .MenuBox .subMenuBox.megaMenuBox {  min-width: 100%;}
.menuFeaturesItemBox{    flex-direction: column;}
.menuFeaturesItemBox .menuFeaturesPointItem,
.menuFeaturesItemBox .menuFeaturesComingSoon {  width: 100%;}
.menuFeaturesItemBox .menuFeaturesItemList .titleBox {  font-size: 14px;}
.menuFeaturesItemBox .menuFeaturesItemList .infoTxt {  font-size: 12px;     line-height: 18px;} 
.menuFeaturesItemBox {  padding: 25px 0;     overflow-y: auto;   max-height: 440px;}


.desktopPlanTabsData{ display: none; }
.mobilesubTabsBox{ display: block; }


.planPriceTable .planPriceTableHead .planPriceBox sup{    bottom: 0;  right: -58px;}
.plansTabsBody .planPriceTable{height: auto;   padding-bottom: 185px;}
.planPriceTable .planPriceTableHead .planNameBox{ background: none;     min-height: 50px;  }

.homepageVideoBox video{    top: 15px; left: 15px;}
.successStoriesItemBox{ margin-top: 0px; }

}



/* Portrait phones and smaller */
@media (max-width: 480px) {
.contentwrapper .mainTitle {    padding: 0 10%; }
}


/* Portrait phones and smaller */
@media (max-width: 320px) {
.mainTitle{ font-size: 24px; line-height: 30px}
.plansTabsBox .tabHeadBox ul li a{  font-size: 16px; padding: 15px 7px; }
.formAndListHolder .MobileOpenForPass .passwordList .passwordInstraction ul li{ margin-bottom: 15px; width: 48%; flex-grow: 1; }
.formAndListHolder .MobileOpenForPass .passwordList .passwordInstraction ul li:nth-last-child(2),
.formAndListHolder .MobileOpenForPass .passwordList .passwordInstraction ul li:nth-last-child(1){ margin-bottom: 0px; }
.formBody .accountPolicy  p {  font-size: 11px;}
.fullWithBottom p, .fullWithBottom ul li a {
    font-size: 10px;
}

}



