﻿* {
  box-sizing: border-box;
  padding: 0; }

h2 {
  font-size: 35px;
  font-weight: bold; }

ul {
  list-style-type: none; }

.directionRtl {
  direction: rtl; }

.directionLtr {
  direction: ltr; }

a:hover {
  text-decoration: none; }

input, select, option, label, textarea {
  font-size: 14px; }

button {
  outline: 0 !important; }

.btn,
.btn:focus,
.form-control:focus,
.custom-select:focus {
  box-shadow: none; }

.commonColor {
  color: #ffaf36; }

.secondaryColor {
  color: #36a8ff; }

.navbarFontColor {
  color: #28324e; }

.textLightColor {
  color: #eee; }

.textDarkColor {
  color: #787878; }

@font-face {
  font-family: 'OpenSans-regular';
  src: url(../fonts/OpenSans-Regular.ttf);
  font-display: swap; }

#spinnerScreen {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999999;
  background-color: rgba(43, 61, 83, 0.9);
  display: flex;
  justify-content: center;
  align-items: center; }

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px; }

.lds-ellipsis div {
  position: absolute;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0); }

.lds-ellipsis div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 0.6s infinite; }

.lds-ellipsis div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 0.6s infinite; }

.lds-ellipsis div:nth-child(3) {
  left: 26px;
  animation: lds-ellipsis2 0.6s infinite; }

.lds-ellipsis div:nth-child(4) {
  left: 45px;
  animation: lds-ellipsis3 0.6s infinite; }

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0); }
  100% {
    transform: scale(1); } }

@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1); }
  100% {
    transform: scale(0); } }

@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0); }
  100% {
    transform: translate(19px, 0); } }

.borderedBtn {
  border: 0;
  border-radius: 5px;
  padding: 10px 20px; }

.btn-grad-blue {
  background-image: linear-gradient(to right, #1A2980 0%, #26D0CE 51%, #1A2980 100%);
  transition: 0.3s;
  background-size: 200% auto; }

.btn-grad-blue:hover {
  background-position: right center; }

.btn-grad-orange {
  background-image: linear-gradient(to right, #FF4E50 0%, #F9D423 51%, #FF4E50 100%);
  transition: 0.3s;
  background-size: 200% auto;
  padding: 10px 30px;
  font-size: 25px;
  color: #222;
  margin: 20px 0;
  font-weight: bold;
  width: 100%; }

.btn-grad-orange:hover {
  background-position: right center; }

img.fullFill {
  width: 100%;
  object-fit: cover;
  object-position: center center;
  height: 100%; }

.awInputTemp .inp {
  position: relative;
  margin: auto;
  width: 100%; }

.awInputTemp .label {
  position: absolute;
  top: 16px;
  left: 0;
  font-size: 15px;
  color: #9098A9;
  font-weight: 500;
  transform-origin: 0 0;
  transition: all .2s ease; }

.awInputTemp .border {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: #ffaf36;
  transform: scaleX(0);
  transform-origin: 0 0;
  transition: all .15s ease; }

.awInputTemp input {
  -webkit-appearance: none;
  width: 100%;
  border: 0;
  font-family: inherit;
  padding: 12px 0;
  height: 48px;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 2px solid #C8CCD4;
  background: none;
  border-radius: 0;
  color: #223254;
  transition: all .15s ease; }
  .awInputTemp input:hover {
    /*background: rgba(#223254,.03);*/ }
  .awInputTemp input:not(:placeholder-shown) + span {
    color: #5A667F;
    transform: translateY(-26px) scale(0.75); }
  .awInputTemp input:focus {
    background: none;
    outline: none; }
    .awInputTemp input:focus + span {
      color: #ffaf36;
      font-weight: bold;
      transform: translateY(-26px) scale(0.75); }
    .awInputTemp input:focus + .border {
      transform: scaleX(1); }

/*//div deviders
.arrow-shape-blue{
    display: block;
    width: 0;
    border-style: solid;
    border-color: transparent;
    border-top-color:#1c202d;
    border-width: 100px 1000px 0px 1000px;
    position: absolute;
    bottom: -100px;
    left: 50%;
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;

}
.arrow-shape-white{
    display: block;
    width: 0;
    border-style: solid;
    border-color: #1c202d;
    border-top-color: #ffffff;
    border-width: 100px 1000px 0px 1000px;
    position: absolute;
    bottom: 0px;
    left: 50%;
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;

}

//FONTS
.font-stack-navbar {
    font-family: 'Raleway', arial, sans-serif;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 600;

}
.font-stack-headers {
    font-weight: 400;
    line-height: 1.15;
    font-family: "Playfair Display";
}
.font-stack-subTitles{
    font-family: 'Raleway', arial, sans-serif;
    line-height: 1.55;
    font-weight:400
}
.font-stack-paragraph{
    font-family: "Playfair Display";
    line-height: 1.55;
    font-weight:400
}*/
body {
  font-family: "OpenSans-regular";
  font-size: 14px; }

/*#testimonials{
    position:relative;
    padding:90px 0;
}
#testimonials .content{
    position:relative;
    z-index:2;
}
#testimonials .f-slider > div{
    display: none
}
#testimonials .f-slider .activ{
    display:block
}
#testimonials .f-slider q{
    color:$textLightColor;
    display:block
}
@include breakpoint(medium){
    #testimonials .f-slider q{
        font-size:12px;
        padding:10px 80px;
    }
}
#testimonials .f-slider h3{
    padding:5px 0;
    color: $secondaryColor;
    font-size:16px;
    font-weight:bold
}
#testimonials .f-slider span{
    font-size:10px;
    font-weight:bold
}*/
/*start navbar*/
nav.navbar {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  transition: all 0.5s;
  padding-top: 20px;
  padding-bottom: 20px; }

nav.navbar.colored {
  background-color: #FFF;
  z-index: 100;
  border-bottom: 1px solid #DDD;
  padding-top: 10px;
  padding-bottom: 10px; }

.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link:visited,
.navbar-light .navbar-nav .nav-link:active,
.navbar-light .navbar-nav .nav-link:focus {
  -webkit-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #eee;
  font-size: 14px;
  text-transform: uppercase;
  border: 0; }

.navbar-light .navbar-nav .nav-link.colored {
  color: #787878; }

.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link:hover {
  color: #ffaf36; }

.navbar-light .navbar-nav .nav-link.freeTrialBtn {
  color: #fff;
  font-size: 13px;
  text-align: center; }

/*end navbar*/
/*start header*/
header {
  background-image: url(../images/pattern-slider.png);
  background-color: #1c202d;
  color: #eee; }

header .headerContent {
  padding-top: 200px; }

@media (max-width: 576px) {
  header .headerContent {
    padding-top: 100px; } }

header .headerContent .headerImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 5px; }

/*end header*/
/*start services*/
#services {
  position: relative;
  padding: 100px 0;
  text-align: center; }

#services::after {
  content: "";
  background: url(../images/partner/pattern.jpg);
  opacity: 0.5;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1; }

hr {
  width: 20%;
  border: 2px solid #ffaf36; }

#services .servicesCards {
  margin-top: 50px; }

#services .servicesCards .service {
  border: 1px solid #EEE;
  transition: all 0.3s;
  cursor: pointer;
  color: #444; }

#services .servicesCards .service:hover {
  background-color: rgba(255, 175, 54, 0.7);
  color: #fff;
  transform: scale(1.02, 1.02);
  z-index: 2; }

#services .servicesCards .service i {
  font-size: 30px;
  margin: 25px 0; }

#services .servicesCards .service h3 {
  margin-bottom: 25px; }

/*end services*/
/*start ask Advice*/
#askAdvice {
  position: relative;
  background-image: url(../images/pattern.png);
  background-attachment: fixed;
  background-color: #1c202d;
  color: #eee;
  text-align: center;
  padding: 70px 0; }

#askAdvice p {
  padding: 20px; }

#askAdvice a {
  font-weight: 500;
  color: #FFF;
  padding: 10px 50px;
  width: auto; }

/*end ask Advice*/
#products {
  position: relative;
  padding: 100px 0;
  text-align: center; }

#products::after {
  content: "";
  background: url(../images/partner/pattern.jpg);
  opacity: 0.5;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1; }

hr {
  width: 20%;
  border: 2px solid #ffaf36; }

#products .productsCards {
  margin-top: 50px; }

#products .productsCards .product {
  border: 1px solid #EEE;
  transition: all 0.3s;
  cursor: pointer;
  color: #444; }

#products .productsCards .product:hover {
  background-color: rgba(255, 175, 54, 0.7);
  color: #fff;
  transform: scale(1.02, 1.02);
  z-index: 2; }

#products .productsCards .product h3 {
  margin-bottom: 25px;
  margin-top: 25px; }

#products .productsCards .product .ERPAsProduct {
  width: 49%;
  margin-bottom: 25px;
  padding: 10px 0;
  background-color: transparent;
  border: 1px solid #555;
  border-radius: 3px;
  font-size: 18px;
  color: #555;
  font-weight: bold;
  transition: all 0.3s; }

#products .productsCards .product .ERPAsProduct:hover {
  background-color: #555;
  color: #FFF; }

#products .productsCards .product .ERPAsProduct a {
  color: #555; }

#products .productsCards .product .ERPAsProduct:hover a {
  color: #FFF; }

/*end products*/
/*start our clients*/
#ourClients {
  padding: 70px 0; }

#ourClients p {
  color: #787878;
  font-size: 13px;
  margin: 20px 0; }

@media (min-width: 992px) {
  #ourClients p {
    width: 50%; } }

/*end our clients*/
#contactUs {
  position: relative;
  padding: 70px 0; }

#contactUs::after {
  content: "";
  background-image: url(../images/partner/hexagonal-pattern_1051-833.png);
  background-size: cover;
  opacity: 0.4;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1; }

#contactUs .awInputTemp .formItem {
  margin: 15px 0; }

#contactUs .awInputTemp label {
  font-weight: bold; }

#contactUs .awInputTemp .formItem .custom-select,
#contactUs .awInputTemp .formItem textarea {
  background-color: transparent;
  font-size: 14px; }

#contactUs .awInputTemp .formItem .message {
  font-size: 13px;
  margin-top: 10px; }

#contactUs .awInputTemp .formItem .message span {
  font-weight: bold; }

#contactUs .awInputTemp .formItem button[type="submit"] {
  width: 100%;
  color: #fff;
  padding: 15px 0;
  border-radius: 40px;
  font-size: 18px;
  font-weight: bold; }

#footer {
  position: relative;
  padding: 100px 0;
  color: #eee;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center; }

@media (min-width: 768px) {
  #footer {
    text-align: left; } }

#footer::after {
  content: "";
  background-image: url(../images/partner/396540.jpg);
  background-attachment: fixed;
  background-size: cover;
  opacity: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: absolute;
  z-index: -1; }

#footer .copyRights p {
  font-size: 13px;
  padding: 20px 0; }

#footer .copyRights p span {
  color: #ffaf36; }

#footer .copyRights .footerSocialLinks a {
  margin: 0 10px;
  padding: 15px;
  text-align: center;
  color: #eee;
  transition: all 0.3s; }

#footer .copyRights .footerSocialLinks a:hover {
  color: #ffaf36; }

#footer .copyRights .footerSocialLinks a i {
  font-size: 25px; }

#footer .contactInfo ul li {
  margin: 10px 0; }

#footer .contactInfo ul li i {
  color: #ffaf36; }

#footer .contactInfo ul li span {
  font-size: 13px;
  padding: 0 10px; }

#footer .subscribeNewsletter .footerSubscribeInput,
#footer .subscribeNewsletter .footerSubscribeBtn {
  background-color: transparent;
  border: 1px solid #ffaf36;
  color: #eee;
  font-size: 14px; }

#footer .subscribeNewsletter .footerSubscribeBtn {
  color: #ffaf36; }

#footer .subscribeNewsletter .footerSubscribeBtn:hover {
  background-color: #ffaf36;
  color: #eee; }

#footer .subscribeNewsletter p {
  font-size: 12px; }

#footer .subscribeNewsletter input::placeholder {
  color: #999;
  font-size: 12px; }

.up a {
  font-size: 40px;
  position: fixed;
  bottom: 30px;
  color: #ffaf36;
  right: 40px;
  transition: all 0.3s;
  display: none; }

#registerToGetDemo {
  margin: 130px 0; }
  #registerToGetDemo h2.registerToGetDemoHeading {
    margin: 40px 0; }
  #registerToGetDemo form.awInputTemp {
    padding: 0 20px; }
  @media (min-width: 992px) {
    #registerToGetDemo form.awInputTemp {
      padding: 0 80px; } }
  #registerToGetDemo form.awInputTemp .ordinaryParag {
    margin: 25px 0;
    color: #787878;
    font-weight: bold; }
  #registerToGetDemo form.awInputTemp .formItem {
    margin: 25px 0; }
  #registerToGetDemo form.awInputTemp .socialLinks {
    margin-bottom: 30px; }
  #registerToGetDemo form.awInputTemp .socialLinks a {
    transition: all 0.3s;
    font-size: 30px;
    margin: 0 5px; }
  #registerToGetDemo form.awInputTemp .socialLinks .googleIcon {
    color: #db4437; }
  #registerToGetDemo form.awInputTemp .socialLinks .googleIcon:hover {
    color: rgba(219, 68, 55, 0.9); }
  #registerToGetDemo form.awInputTemp .socialLinks .facebookIcon {
    color: #39569c; }
  #registerToGetDemo form.awInputTemp .socialLinks .facebookIcon:hover {
    color: rgba(57, 86, 156, 0.9); }
  #registerToGetDemo form.awInputTemp .socialLinks .linkedinIcon {
    color: #2867b2; }
  #registerToGetDemo form.awInputTemp .socialLinks .linkedinIcon:hover {
    color: rgba(40, 103, 178, 0.9); }
  #registerToGetDemo form.awInputTemp .termsAndConditions label.custom-control-label,
  #registerToGetDemo form.awInputTemp .termsAndConditions a.termsPopUp {
    font-size: 13px;
    padding-top: 2px; }
  #registerToGetDemo form.awInputTemp .termsAndConditions a.termsPopUp {
    transition: all 0.3s;
    text-decoration: underline; }
  #registerToGetDemo form.awInputTemp .registerationBtn {
    color: #FFF;
    font-size: 16px;
    background-color: rgba(173, 0, 32, 0.8);
    transition: all 0.3s;
    margin-top: 15px;
    text-transform: uppercase; }
  #registerToGetDemo .passwordMatching {
    opacity: 0;
    color: rgba(173, 0, 32, 0.8);
    font-weight: bold;
    font-size: 14px;
    transition: all 0.2s; }
  #registerToGetDemo form.awInputTemp .registerationBtn:hover {
    background-color: #ad0020; }
  #registerToGetDemo form.awInputTemp .registerationBtn[disabled]:hover {
    background-color: rgba(173, 0, 32, 0.8); }
  #registerToGetDemo .modules {
    margin: 50px 0;
    text-align: center; }
  #registerToGetDemo .modules .module {
    margin: 5px 0; }
  #registerToGetDemo .modules .custom-control label {
    font-weight: bold; }

@media (min-width: 992px) {
  #registerToGetDemo {
    margin: 200px 0; } }

#packagesAndPricing {
  text-align: center;
  margin: 130px 0; }
  #packagesAndPricing h3 {
    color: #2b3d53; }
  #packagesAndPricing h4, #packagesAndPricing p.packagesDescp {
    color: #787878; }
  #packagesAndPricing p.packagesDesc {
    margin: 20px 40px; }
  #packagesAndPricing button.freeTrialBtn {
    color: #FFF;
    font-size: 16px;
    margin: 20px 0; }
  #packagesAndPricing table {
    margin: 20px 0; }
  #packagesAndPricing table th,
  #packagesAndPricing table th a,
  #packagesAndPricing table td a {
    color: #444;
    transition: all 0.3s; }
  #packagesAndPricing table th a:hover,
  #packagesAndPricing table td a:hover {
    color: #0056b3;
    text-decoration: underline; }
  #packagesAndPricing table .tableIcon {
    font-size: 23px; }
  #packagesAndPricing table .tableIcon.avaliableFeature {
    color: #28a745; }
  #packagesAndPricing table .tableIcon.notAvaliableFeature {
    color: #999; }
  #packagesAndPricing table tfoot .buyNowBtn h3 {
    color: #2b3d53;
    font-weight: bold;
    font-size: 35px; }
  #packagesAndPricing table tfoot .price {
    color: #28a745;
    font-size: 20px; }
  #packagesAndPricing table tfoot .buyButton {
    display: block;
    width: 100%;
    color: #FFF;
    font-size: 16px;
    background-color: rgba(173, 0, 32, 0.8);
    transition: all 0.3s;
    margin-top: 15px;
    text-transform: uppercase;
    padding: 10px 0;
    border-radius: 3px; }
  #packagesAndPricing table tfoot .buyButton:hover {
    background-color: #ad0020; }

@media (min-width: 992px) {
  #packagesAndPricing {
    margin: 170px 0; } }

.feelSafe {
  position: relative;
  background: url(../images/partner/bg-2.jpg) repeat;
  padding: 50px 0; }

.feelSafe .sheildDays {
  position: relative; }

.feelSafe .sheildDays:after {
  content: "14 Days";
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  color: #FFF;
  font-weight: bold; }

.feelSafe .riskFreePurchase {
  margin-top: 20px; }

.feelSafe .riskFreePurchase h3 {
  color: #2b3d53;
  font-weight: bold;
  font-size: 35px; }

.feelSafe .riskFreePurchase p {
  color: #2b3d53;
  font-size: 16px; }

#modules {
  margin-top: 100px; }
  #modules .modulesHeadSection {
    text-align: center;
    margin: 50px 0;
    color: #2b3d53; }
  #modules .modulesSectionDesc {
    padding: 0 50px;
    font-size: 13px;
    color: #787878;
    margin-bottom: 50px; }
  #modules .accordion .card .card-header {
    background-image: linear-gradient(to top, #d5d4d0 0%, #d5d4d0 1%, #eeeeec 31%, #efeeec 75%, #e9e9e7 100%);
    padding: 5px 15px;
    border-bottom: 1px solid rgba(43, 61, 83, 0.5);
    cursor: pointer; }
  #modules .accordion .card .card-header h2 button {
    color: #2b3d53;
    font-size: 18px;
    font-weight: bold; }
  #modules .accordion .card .card-body {
    position: relative; }
  #modules .accordion .card .card-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0.3;
    bottom: 0;
    background-image: url(../images/partner/pattern.jpg);
    background-attachment: fixed; }
  #modules .accordion .card .card-body .moduleDescription p {
    font-size: 14px;
    color: #787878; }
  #modules .accordion .card .card-body .moduleDescription h3 {
    color: #2b3d53;
    font-weight: bold; }
  #modules .accordion .card .card-body .moduleDescription ul li {
    color: #333; }
  #modules .accordion .card .card-body .moduleDescription button {
    color: #FFF;
    font-size: 13px;
    font-weight: bold;
    padding: 10px 20px; }

@media (min-width: 992px) {
  #modules {
    margin-top: 150px 0; } }

#modulesCarousel {
  margin: 70px 0; }
  #modulesCarousel h2 {
    margin: 50px 0;
    color: #2b3d53; }
  #modulesCarousel a.item {
    color: #787878; }
  #modulesCarousel a.item i {
    font-size: 40px;
    margin: 15px 0;
    color: #2b3d53; }
