.alegreya {
  font-family: 'Alegreya Sans', sans-serif;
}

.montserrat {
  font-family: 'Montserrat', sans-serif;
}

.opensans {
  font-family: 'Open Sans', sans-serif;
}

.blackBtn {
  padding: 10px 25px;
  background-color: #222834;
  color: #ffffff;
  border-radius: 4px;
  font-size: 14px;
  text-transform: uppercase;
  -webkit-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
  border-bottom: 2px solid #000000;
}

.blackBtn:hover {
  background-color: #e96a35;
  color: #ffffff;
  border-bottom: 2px solid #eb5616;
}

.whiteBtn {
  padding: 10px 25px;
  background-color: #ffffff;
  color: #222834;
  border-radius: 4px;
  font-size: 14px;
  text-transform: uppercase;
  -webkit-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
  border-bottom: 2px solid #c9c9c9;
}

.whiteBtn:hover {
  background-color: #e96a35;
  color: #ffffff;
  border-bottom: 2px solid #eb5616;
}

.orgBtn {
  padding: 10px 25px;
  background-color: #e96a35;
  color: #ffffff;
  border-radius: 4px;
  font-size: 14px;
  text-transform: uppercase;
  -webkit-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
  border-bottom: 2px solid #eb5616;
}

.orgBtn:hover {
  background-color: #222834;
  color: #ffffff;
  border-bottom: 2px solid #000000;
}

* {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mainWrap {
  border-top: 4px solid #222834;
  position: relative;
  overflow: hidden;
}

a {
  text-decoration: none;
}

ul li {
  list-style: none;
}

.ml {
  margin-left: 20px;
}

#error {
  display: none;
  color: red;
  border: 1px solid red;
  padding: 10px;
  text-transform: capitalize;
}

#ferror {
  display: none;
  color: red;
  border: 1px solid red;
  padding: 10px;
  text-align: center;
  text-transform: capitalize;
}

input[type="submit"] {
  padding: 15px 25px;
  background-color: #e96a35;
  color: #ffffff;
  border-radius: 4px;
  font-size: 14px;
  text-transform: uppercase;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  border-bottom: 2px solid #eb5616;
  border: none;
  width: 200px;
}

input[type="submit"]:hover {
  background-color: #222834;
  color: #ffffff;
  border-bottom: 2px solid #000000;
}

.strap {
  background-color: #222834;
  height: 48px;
  position: relative;
  border-radius: 0 0 6px 6px;
}

.strap .social-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  height: 48px;
  align-items: center;
  padding: 0px;
  margin: 0px;
  margin-left: 20px;
}

.strap .social-icons li {
  background-color: #4f5662;
  padding: 5px 10px;
  border-radius: 50%;
  margin-right: 10px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.strap .social-icons :hover {
  background-color: #e96a35;
}

.strap .social-icons a {
  font-size: 12px;
  color: #ffffff;
}

.strap .someInfo {
  color: #ffffff;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  height: 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.strap .someInfo li {
  position: relative;
}

.strap .someInfo li a {
  color: #ffffff;
}

.strap .someInfo li a i {
  color: #4f5662;
  margin-right: 5px;
}

.strap .someInfo .customeToolTip {
  position: absolute;
  top: 30px;
  left: -50px;
  width: 180px;
  z-index: 1000;
  display: none;
}

.strap .someInfo .customeToolTip p {
  background-color: #e96a35;
  padding: 10px;
}

.strap .someInfo li:last-child:hover .customeToolTip {
  display: block;
}

.customeToolTip::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #e96a35;
  top: -5px;
  left: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.strap::before {
  position: absolute;
  background: url("../assets/img/top-left-bar.jpg");
  top: 0px;
  left: -30px;
  content: "";
  height: 48px;
  width: 35px;
  z-index: -99px;
}

.strap::after {
  position: absolute;
  background: url("../assets/img/top-right-bar.jpg");
  top: 0px;
  right: -30px;
  content: "";
  height: 48px;
  width: 35px;
  z-index: -99px;
}

.stickyNav {
  position: fixed;
  padding-top: 0px;
  padding-bottom: 10px;
  background: rgba(255, 255, 255, 0.999);
  width: 100%;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
          box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  z-index: 3000;
}

.menuBtn {
  display: none;
}

.cancel-btn {
  display: none;
}

header {
  padding: 20px 0px;
  top: 0px;
  -webkit-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

header .logo {
  float: left;
  height: 80px;
}

header nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 80px;
  margin: 0px;
  position: relative;
  -webkit-transition: .3s all ease-in-out;
  transition: .3s all ease-in-out;
}

header nav ul li {
  text-transform: uppercase;
  font-size: 12px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

header nav ul li a {
  padding: 10px 15px;
  color: #222834;
}

header nav ul li .subMenu {
  position: absolute;
  background-color: #222834;
  display: none;
  -webkit-transition: 1s all ease-in-out;
  transition: 1s all ease-in-out;
}

header nav ul li .subMenu ul {
  color: #ffffff;
  padding: 10px 5px;
  display: block;
  height: auto;
}

header nav ul li .subMenu ul li a {
  color: #6f6f6f;
}

header nav ul li .subMenu ul li:hover a {
  color: #e96a35;
}

header nav ul li:hover {
  background-color: #222834;
}

header nav ul li:hover a {
  color: #ffffff;
}

header nav ul li:hover a {
  padding: 10px 15px;
}

header nav ul li:hover .subMenu {
  display: block;
  -webkit-transition: .2s display ease-in;
  transition: .2s display ease-in;
}

header nav ul .searchWrapper {
  position: absolute;
  top: 55px;
  right: 0px;
  width: 500px;
  background-color: #141414;
  padding: 20px;
  display: none;
}

header nav ul .searchWrapper form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header nav ul .searchWrapper form input[type="submit"] {
  padding: 15px 25px;
  background-color: #e96a35;
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  border-bottom: 2px solid #eb5616;
  border: none;
  width: 200px;
  margin-bottom: 0px;
}

header nav ul .searchWrapper form input[type="submit"]:hover {
  background-color: #222834;
  color: #ffffff;
}

header nav ul .searchWrapper form input,
header nav ul .searchWrapper form textarea {
  width: 100%;
  border-radius: 0px;
  background-color: #2c2c2c;
  border: none;
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 16px;
  padding: 13px;
  outline: none;
  margin-bottom: 0px;
}

header nav ul .searIcon:hover .searchWrapper {
  display: block;
}

header nav ul .active a {
  background-color: #222834;
  color: #ffffff;
  padding: 10px 15px;
}

header nav ul .searchIcon:hover .searchWrapper a {
  color: red;
}

header nav ul :hover {
  background-color: #222834;
  color: #ffffff;
}

.heroWrapper {
  background-image: url("../assets/img/bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 50px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.heroWrapper .mainText {
  color: #ffffff;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.heroWrapper .mainText h1 {
  margin: 5px 0px;
  font-size: 44px;
  font-weight: bold;
  text-transform: capitalize;
}

.heroWrapper .mainText p {
  font-size: 20px;
  text-transform: capitalize;
  margin: 10px 0px;
  margin-bottom: 30px;
}

.solutionLookingWrapper {
  background: url("../assets/img/bg-parallax.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 70px 0px;
  color: #ffffff;
}

.solutionLookingWrapper h2 {
  font-size: 34px;
  font-weight: bold;
  margin-bottom: 20px;
}

.solutionLookingWrapper .solutionOptionWrapper {
  margin-top: 20px;
  font-size: 16px;
}

.solutionLookingWrapper .solutionOptionWrapper .checkField {
  padding: 15px 0px;
}

.solutionLookingWrapper .solutionOptionWrapper label {
  margin-left: 5px;
}

.solutionLookingWrapper .solutionOptionWrapper .modelBoxWrapper {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.61);
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  display: none;
}

.solutionLookingWrapper .solutionOptionWrapper .modelBoxWrapper .modalBox {
  background-color: #141414;
  padding: 30px;
  width: 500px;
  position: relative;
}

.solutionLookingWrapper .solutionOptionWrapper .modelBoxWrapper .modalBox input[type="submit"],
.solutionLookingWrapper .solutionOptionWrapper .modelBoxWrapper .modalBox input[type="reset"] {
  padding: 15px 25px;
  background-color: #e96a35;
  color: #ffffff;
  border-radius: 4px;
  font-size: 14px;
  text-transform: uppercase;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  border-bottom: 2px solid #eb5616;
  border: none;
  width: 200px;
  margin-bottom: 0px;
}

.solutionLookingWrapper .solutionOptionWrapper .modelBoxWrapper .modalBox input[type="submit"]:hover,
.solutionLookingWrapper .solutionOptionWrapper .modelBoxWrapper .modalBox input[type="reset"]:hover {
  background-color: #222834;
  color: #ffffff;
}

.solutionLookingWrapper .solutionOptionWrapper .modelBoxWrapper .modalBox input,
.solutionLookingWrapper .solutionOptionWrapper .modelBoxWrapper .modalBox textarea {
  width: 100%;
  border-radius: 0px;
  background-color: #2c2c2c;
  border: none;
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 16px;
  padding: 10px;
  outline: none;
}

.solutionLookingWrapper .solutionOptionWrapper .modelBoxWrapper .modalBox .close {
  position: absolute;
  color: #ffffff;
  top: -15px;
  right: -15px;
  padding: 1px 10px;
  background-color: #e96a35;
  border-radius: 25px;
  font-weight: bold;
  font-size: 20px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.solutionLookingWrapper .solutionOptionWrapper .modelBoxWrapper .modalBox .close:hover {
  background-color: #222834;
  -webkit-transform: rotate(140deg);
          transform: rotate(140deg);
}

.itmanagedWrapper {
  background-color: #f9f9f9;
  padding: 70px 0px;
}

.itmanagedWrapper h2 {
  font-size: 34px;
  font-weight: bold;
}

.itmanagedWrapper p {
  font-size: 15px;
  color: hwb(216 42% 49%);
}

.itmanagedWrapper .managedServiceWrappers {
  margin: 60px 0px;
}

.itmanagedWrapper .managedServiceWrappers .service {
  padding: 10px;
}

.itmanagedWrapper .managedServiceWrappers .service .image {
  margin-bottom: 40px;
}

.itmanagedWrapper .managedServiceWrappers .service .heading {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: normal;
  letter-spacing: 1.3px;
  color: #222834;
}

.itmanagedWrapper .managedServiceWrappers .service .subHeading {
  font-size: 12px;
  text-transform: capitalize;
  color: hwb(216 42% 49%);
  font-weight: 400;
  line-height: 24px;
}

.services {
  background-color: #f9f9f9;
  padding-top: 70px;
}

.services h2 {
  font-size: 34px;
  font-weight: bold;
  margin: 20px auto;
}

.services p {
  color: hwb(216 42% 49%);
  font-size: 15px;
}

.services .serviceImg {
  margin-top: 80px;
}

.solutions,
.consulting {
  background-color: #f9f9f9;
  padding: 50px 0px;
}

.solutions h2,
.consulting h2 {
  font-size: 34px;
  font-weight: bold;
  margin: 20px auto;
}

.solutions p,
.consulting p {
  color: hwb(216 42% 49%);
  font-size: 15px;
}

.solutions .serviceImg,
.consulting .serviceImg {
  margin-top: 80px;
}

.onetimeWrapper {
  padding: 50px 0px;
}

.onetimeWrapper .oneTimeContentWrapper h2 {
  font-size: 34px;
  font-weight: bold;
  color: #222834;
  margin-bottom: 20px;
}

.onetimeWrapper .oneTimeContentWrapper p {
  color: hwb(216 42% 49%);
  font-size: 12px;
  line-height: 24px;
}

.onetimeWrapper .oneTimeContentWrapper .pointsWrapper {
  margin-top: 30px;
}

.onetimeWrapper .oneTimeContentWrapper .pointsWrapper p {
  font-size: 13px;
}

.onetimeWrapper .oneTimeContentWrapper .pointsWrapper p img {
  margin-right: 10px;
}

.aboutWrapper {
  background: url("../assets/img/bg-parallax.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  padding: 50px 0px;
}

.aboutWrapper .aboutText p {
  font-size: 14px;
  color: #ffffff;
  line-height: 30px;
  width: 70%;
  margin: auto;
}

.processFlow {
  padding: 50px 0px;
}

.processFlow .topHeading h2 {
  font-size: 34px;
  font-weight: bold;
}

.processFlow .topHeading p {
  font-size: 13px;
  color: hwb(216 42% 49%);
}

.topBannerWrapper {
  background: url("../assets/img/sub-banner.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 250px;
}

.topBannerWrapper .centerBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 250px;
  color: #ffffff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.topBannerWrapper .centerBox h3 {
  font-size: 50px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.subTextWrapper {
  margin: 60px 0px;
}

.subTextWrapper h2 {
  font-size: 34px;
  font-weight: bold;
  color: #222834;
  margin-bottom: 20px;
}

.subTextWrapper p {
  color: hwb(216 42% 49%);
  font-size: 15px;
}

.servicesWrapper {
  margin: 30px auto;
}

.servicesWrapper .servicesBox {
  padding: 20px 10px;
  margin: 10px auto;
  text-align: center;
  -webkit-box-shadow: rgba(149, 157, 165, 0.267) 0px 8px 24px;
          box-shadow: rgba(149, 157, 165, 0.267) 0px 8px 24px;
  height: 150px;
  -webkit-transition: 0.4s all ease-in-out;
  transition: 0.4s all ease-in-out;
}

.servicesWrapper .servicesBox img {
  margin-bottom: 20px;
}

.servicesWrapper .servicesBox h5 {
  margin: 0px;
  color: hwb(216 42% 49%);
  font-size: 14px;
  text-transform: uppercase;
}

.servicesWrapper .servicesBox:hover {
  background-color: #222834;
}

.servicesWrapper .servicesBox:hover h5 {
  color: #ffffff;
}

.contactFormWrapper {
  margin: 50px auto;
  text-align: center;
}

.contactFormWrapper .formWrapper h2 {
  font-size: 34px;
  font-weight: bold;
  color: #222834;
  margin-bottom: 20px;
  text-transform: capitalize;
}

.contactFormWrapper .formWrapper .form {
  margin-top: 30px;
  width: 50%;
  margin: auto;
}

.contactFormWrapper .formWrapper .form input[type="submit"] {
  padding: 15px 25px;
  background-color: #e96a35;
  color: #ffffff;
  border-radius: 4px;
  font-size: 14px;
  text-transform: uppercase;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  border-bottom: 2px solid #eb5616;
  border: none;
  width: 200px;
}

.contactFormWrapper .formWrapper .form input[type="submit"]:hover {
  background-color: #222834;
  color: #ffffff;
  border-bottom: 2px solid #000000;
}

.contactFormWrapper .formWrapper .form input,
.contactFormWrapper .formWrapper .form textarea {
  width: 100%;
  border-radius: 0px;
  background-color: transparent;
  border: 1px solid hwb(216 42% 49%);
  color: #222834;
  margin-bottom: 20px;
  font-size: 16px;
  padding: 10px;
}

.contactFormWrapper .contactBox {
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
          box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  padding: 20px;
  height: 90px;
}

.contactFormWrapper .contactBox i {
  font-size: 20px;
  color: #e96a35;
  margin-bottom: 10px;
}

.contactFormWrapper .contactBox h5 {
  color: hwb(216 42% 49%);
  font-size: 12px;
  margin: 0px;
  font-weight: bold;
}

.contactFormWrapper .contactBox:hover {
  background-color: #222834;
}

.contactFormWrapper .contactBox:hover h5 {
  color: #ffffff;
}

.pageContentWrapper {
  padding: 50px 0px;
}

.pageContentWrapper h5 {
  font-size: 18px;
  color: hwb(216 42% 49%);
}

.pageContentWrapper .accordionWrapper {
  margin: 40px auto;
}

.pageContentWrapper .accordionWrapper h6 {
  color: #e96a35;
  font-weight: bold;
}

.pageContentWrapper .accordionWrapper p {
  font-size: 15px;
  color: hwb(216 42% 49%);
}

.pageContentWrapper .accordionWrapper .accordion {
  margin-top: 40px;
}

.pageContentWrapper .accordionWrapper .accordion-button:not(.collapsed) {
  color: #e96a35;
  font-weight: 600;
}

.amcPointsWrapper {
  margin: 40px auto;
}

.amcPointsWrapper h6 {
  color: #e96a35;
  font-weight: bold;
}

.amcPointsWrapper ul li {
  list-style: disc;
}

.aboutUsWrapper {
  margin: 30px auto;
}

.aboutUsWrapper h5 {
  font-size: 22px;
  font-weight: bold;
  color: #222834;
}

.aboutUsWrapper p {
  font-size: 18px;
  color: hwb(216 42% 49%);
}

.aboutUsWrapper .verticalsWrapper {
  margin: 30px auto;
}

.aboutUsWrapper .verticalsWrapper .vertical {
  margin: 40px 0px;
}

.aboutUsWrapper .verticalsWrapper .vertical h6 {
  font-size: 20px;
  color: #e96a35;
}

.aboutUsWrapper .verticalsWrapper .vertical p {
  margin: 10px 0px;
  font-size: 16px;
  color: hwb(216 42% 49%);
  font-style: italic;
}

.aboutUsWrapper .verticalsWrapper .vertical p span {
  color: #e96a35;
  font-size: 12px;
}

.aboutUsWrapper .verticalsWrapper .vertical ul {
  padding: 10px 0px;
}

.aboutUsWrapper .verticalsWrapper .vertical ul li {
  margin: 10px 0px;
  font-size: 16px;
  color: hwb(216 42% 49%);
  font-style: italic;
}

.aboutUsWrapper .moreaboutPrajtech h2 {
  font-size: 34px;
  font-weight: bold;
}

.aboutUsWrapper .moreaboutPrajtech p {
  margin: 20px 0px;
  color: hwb(216 42% 49%);
  font-style: italic;
}

.aboutUsWrapper .moreaboutPrajtech p span {
  margin-right: 15px;
  font-weight: bold;
  color: #e96a35;
}

.aboutUsWrapper .moreaboutPrajtech p a {
  color: #e96a35;
}

.aboutUsWrapper .moreaboutPrajtech ul {
  padding: 0px;
}

.aboutUsWrapper .moreaboutPrajtech ul li {
  margin: 10px 0px;
  font-size: 16px;
  color: hwb(216 42% 49%);
  font-style: italic;
}

footer {
  background-color: #232c3b;
  color: #969ea7;
  padding: 50px 0px;
}

footer .bottomLogo {
  width: 300px;
  margin-bottom: 30px;
}

footer .aboutprajtech {
  font-size: 13px;
}

footer .contactDetails {
  margin: 20px auto;
  font-size: 12px;
}

footer .contactDetails p {
  border-bottom: 1px solid hwb(216 42% 49%);
  padding: 10px 0px;
}

footer .contactDetails p a {
  color: hwb(216 42% 49%);
}

footer .contactDetails p a i {
  margin-right: 10px;
}

footer .serviceProvided p {
  text-transform: uppercase;
  font-size: 16px;
  color: #ffffff;
}

footer .serviceProvided .privacyLink {
  margin: 30px 0px;
}

footer .serviceProvided .privacyLink span {
  margin-right: 10px;
  color: hwb(216 42% 49%);
}

footer .serviceProvided .privacyLink a {
  text-transform: capitalize;
  color: hwb(216 42% 49%);
}

footer .serviceProvided .privacyLink:hover span {
  color: #e96a35;
}

footer .serviceProvided .privacyLink:hover a {
  color: #e96a35;
}

footer .serviceProvided .footerServiceWrapper p {
  text-transform: capitalize;
}

footer .serviceProvided .footerServiceWrapper p span {
  color: hwb(216 42% 49%);
  margin-right: 10px;
}

footer .serviceProvided .footerServiceWrapper p a {
  font-size: 13px;
  color: hwb(216 42% 49%);
  padding: 10px 0px;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
}

footer .serviceProvided .footerServiceWrapper p a:hover {
  color: #ffffff;
  border-bottom: 1px dashed #ffffff;
}

footer .getFreeQuote p {
  text-transform: uppercase;
  font-size: 16px;
  color: #ffffff;
}

footer .getFreeQuote .form {
  margin-top: 20px;
}

footer .getFreeQuote .form input[type="submit"] {
  padding: 15px 25px;
  background-color: #e96a35;
  color: #ffffff;
  border-radius: 4px;
  font-size: 14px;
  text-transform: uppercase;
  -webkit-transition: 0.3s all ease-in-out;
  transition: 0.3s all ease-in-out;
  border-bottom: 2px solid #eb5616;
  border: none;
  width: 200px;
}

footer .getFreeQuote .form input[type="submit"]:hover {
  background-color: #222834;
  color: #ffffff;
  border-bottom: 2px solid #000000;
}

footer .getFreeQuote .form input,
footer .getFreeQuote .form textarea {
  width: 100%;
  border-radius: 0px;
  background-color: transparent;
  border: 1px solid hwb(216 42% 49%);
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 16px;
  padding: 10px;
}

.newsLetterWrapper {
  background-color: #f9f9f9;
  padding: 30px;
}

.newsLetterWrapper .newsLetterBox {
  width: 80%;
  margin: auto;
  background-color: #ffffff;
  border-top: 5px solid #222834;
  padding: 20px 30px;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
          box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.newsLetterWrapper .newsLetterBox .newsLetterHeader .logo {
  width: 50%;
}

.newsLetterWrapper .newsLetterBox .newsLetterHeader .newsLetterDate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}

.newsLetterWrapper .newsLetterBox .newsLetterHero {
  background-color: #ebebeb;
  padding: 20px;
}

.newsLetterWrapper .newsLetterBox .newsLetterHero .heroText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.newsLetterWrapper .newsLetterBox .newsLetterHero .heroText h4 {
  font-size: 20px;
  font-weight: 700;
}

.newsLetterWrapper .newsLetterBox .newsLetterHero .heroText h2 {
  font-size: 24px;
  color: #e96a35;
  font-weight: bold;
}

.newsLetterWrapper .newsLetterBox .newsLetterHero .heroText p {
  font-size: 16px;
  color: hwb(216 42% 49%);
}

.newsLetterWrapper .newsLetterBox .newsLetterHero .heroImg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80%;
}

.newsLetterWrapper .newsLetterBox .newsletterBody {
  background-color: #e96a35;
  padding: 20px;
}

.newsLetterWrapper .newsLetterBox .newsletterBody h6 {
  text-transform: uppercase;
  color: #222834;
  font-weight: 600;
  margin-bottom: 10px;
}

.newsLetterWrapper .newsLetterBox .newsletterBody h5 {
  text-transform: capitalize;
  color: #ffffff;
  font-weight: bold;
}

.newsLetterWrapper .newsLetterBox .newsletterBody p {
  color: #222834;
  font-weight: 400;
}

.newsLetterWrapper .newsLetterBox .newsletterBodyImg {
  padding: 20px 0px;
  height: 300px;
}

.newsLetterWrapper .newsLetterBox .newsletterBodyImg img {
  width: 100%;
  height: 100%;
}

.newsLetterWrapper .newsLetterBox .newsletterPoints {
  padding: 20px;
}

.newsLetterWrapper .newsLetterBox .newsletterPoints .pointWrapper {
  margin: 20px auto;
}

.newsLetterWrapper .newsLetterBox .newsletterPoints .pointWrapper h5 {
  font-weight: bold;
  color: #222834;
  margin-bottom: 20px;
}

.newsLetterWrapper .newsLetterBox .newsletterPoints .pointWrapper p {
  color: hwb(216 42% 49%);
}

.newsLetterWrapper .newsLetterBox .newsletterPoints .pointWrapper a {
  color: #e96a35;
}

.newsLetterWrapper .newsLetterBox .newsLetterContactus {
  text-align: center;
}

.newsLetterWrapper .newsLetterBox .newsLetterContactus h3 {
  margin: 20px 0px;
  text-transform: capitalize;
}

.newsLetterWrapper .newsLetterBox .newsLetterFooter {
  background: #232c3b;
  color: #ffffff;
  margin-top: 30px;
  padding: 20px;
}

.newsLetterWrapper .newsLetterBox .newsLetterFooter .logo {
  width: 50%;
}

.newsLetterWrapper .newsLetterBox .newsLetterFooter .CopyrightText {
  text-align: center;
}

.newsLetterWrapper .newsLetterBox .newsLetterFooter .CopyrightText p {
  margin: 0px;
}

.caseStudyWrapper {
  background: #f9f9f9;
  padding: 30px;
}

.caseStudyWrapper .caseStudyBox {
  width: 80%;
  margin: auto;
  background-color: #ffffff;
  padding: 20px;
  -webkit-box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
          box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.caseStudyWrapper .caseStudyBox .firstPara {
  background-color: #ebebeb;
  padding: 20px;
}

.caseStudyWrapper .caseStudyBox .firstPara .paraText {
  padding: 10px 30px;
}

.caseStudyWrapper .caseStudyBox .firstPara .paraText h5 {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.caseStudyWrapper .caseStudyBox .firstPara .paraText p {
  font-style: italic;
  font-size: 16px;
  color: hwb(216 42% 49%);
}

.caseStudyWrapper .caseStudyBox .secondpara {
  background-color: #ffffff;
  padding: 20px;
}

.caseStudyWrapper .caseStudyBox .secondpara .paraText {
  padding: 10px 30px;
}

.caseStudyWrapper .caseStudyBox .secondpara .paraText h5 {
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.caseStudyWrapper .caseStudyBox .secondpara .paraText p {
  font-style: italic;
  font-size: 16px;
  color: hwb(216 42% 49%);
}

.caseStudyWrapper .caseStudyBox .caseStudyHeading {
  background-color: #222834;
  color: #ffffff;
  padding: 10px;
  text-align: center;
}

.caseStudyWrapper .caseStudyBox .caseStudyHeading h6 {
  font-size: 26px;
  margin: 0px;
  font-weight: 400;
}

.caseStudyWrapper .caseStudyBox .studyContent {
  padding: 20px;
}

.caseStudyWrapper .caseStudyBox .studyContent .contentImg {
  width: 400px;
  margin: auto;
}

.caseStudyWrapper .caseStudyBox .studyContent .contentPara {
  margin: 20px auto;
}

.caseStudyWrapper .caseStudyBox .studyContent .contentPara p {
  font-size: 16px;
  font-style: italic;
}

.caseStudyWrapper .caseStudyBox .studyContent .quote {
  text-align: center;
  font-size: 28px;
  color: #e96a35;
  font-style: italic;
}

.caseStudyWrapper .caseStudyBox .content {
  padding: 20px;
}

.caseStudyWrapper .caseStudyBox .content h2 {
  margin-bottom: 30px;
}

.privacyPolicyWrapper {
  margin: 20px 0px;
}

.privacyPolicyWrapper .policyBox {
  width: 50%;
  margin: auto;
  -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
          box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: #faf2ef;
  padding: 30px 20px;
}

.privacyPolicyWrapper .policyBox h2 {
  font-size: 20px;
  font-weight: bold;
}

.privacyPolicyWrapper .policyBox p {
  margin: 20px 0px;
  font-size: 16px;
  color: hwb(216 42% 49%);
  font-style: italic;
}

.privacyPolicyWrapper .policyBox p span {
  color: #e96a35;
}

.privacyPolicyWrapper .downloadPolicyWrapper {
  margin: 50px auto;
  text-align: center;
}

.questionairesWrapper {
  margin: 20px auto;
}

.questionairesWrapper h5 {
  font-size: 20px;
  color: #e96a35;
  margin: 30px auto;
}

.questionairesWrapper .form-control {
  width: 100%;
  border-radius: 0px;
  background-color: transparent;
  border: 1px solid hwb(216 42% 49%);
  color: #222834;
  margin: 10px auto;
  font-size: 16px;
  padding: 10px;
}

.questionairesWrapper .form-check {
  display: inline-block;
  margin: 10px auto;
  margin-left: 30px;
}

.questionairesWrapper .checkBox {
  margin-left: 0px;
}

.managedBodyText {
  margin: 30px auto;
  color: hwb(216 42% 49%);
  font-style: italic;
}

.ElementOfPrajtech {
  margin: 40px auto;
}

.ElementOfPrajtech h2 {
  font-size: 34px;
  font-weight: bold;
  color: #222834;
}

.ElementOfPrajtech .elementsWrapper {
  margin: 40px auto;
  color: hwb(216 42% 49%);
}

.ElementOfPrajtech .elementsWrapper ol li {
  text-align: justify;
}

.ElementOfPrajtech .elementsWrapper ol li p span {
  color: #e96a35;
  font-weight: bold;
  font-style: italic;
  margin-right: 5px;
}

.ElementOfPrajtech .elementsWrapper ol li::marker {
  color: #e96a35;
  font-weight: bold;
  font-style: italic;
  margin-right: 5px;
}

.supportModel {
  background-color: #f9f9f9;
  padding: 30px;
}

.supportModel .supportModelImg {
  text-align: center;
}

.supportModel .supportModelImg img {
  width: 60%;
}

.approachAndBenefitsWrapper {
  margin: 30px auto;
}

.approachAndBenefitsWrapper h5 {
  color: #e96a35;
}

.approachAndBenefitsWrapper ol {
  color: hwb(216 42% 49%);
}

.approachAndBenefitsWrapper ol li span {
  color: #e96a35;
  font-style: italic;
  text-transform: capitalize;
}

@media (max-width: 575.98px) {
  .mainWrap {
    border: none;
  }
  .strap {
    display: none;
  }
  header .logo {
    height: auto;
  }
  .menuBtn {
    display: block;
    position: absolute;
    right: 30px;
    top: 20px;
    z-index: 3100;
  }
  .cancel-btn {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 3100;
  }
  header {
    padding: 0px;
  }
  nav {
    position: absolute;
    z-index: 4000;
    right: 0px;
    background-color: #ffffffed;
    display: none;
  }
  header nav ul {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    top: 40px;
    left: 0px;
    height: 100vh;
    width: 100vw;
    padding: 0px;
    z-index: 3000;
  }
  header nav ul li {
    margin: 20px 0px;
  }
  .stickyNav {
    padding: 0px;
  }
  header nav ul li a {
    font-size: 16px;
  }
  .heroWrapper .mainText h1 {
    font-size: 36px;
  }
  .heroWrapper .mainText p {
    font-size: 16px;
  }
  .heroImg img {
    margin-top: 50px;
  }
  .solutionLookingWrapper h2 {
    font-size: 28px;
  }
  .solutionLookingWrapper .solutionOptionWrapper .modelBoxWrapper .modalBox {
    width: 90%;
  }
  .itmanagedWrapper h2 {
    font-size: 28px;
  }
  .onetimeWrapper .oneTimeContentWrapper h2 {
    margin: 10px 0px;
    font-size: 28px;
  }
}
/*# sourceMappingURL=style.css.map */