button {
  border: none;
  outline: none;
  font-family: "mukta vaani", sans-serif;
  font-size: 20px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 6px;
  cursor: pointer;
}

button.fill-btn {
  background: #007bff; /* Change css in redwan*/
  color: #fff;  /* Change css in redwan*/
}

button.fill-btn:hover {
  opacity: 0.9;
}

button.outline-btn {
  background: transparent;
  border: 2px solid #F3F4F7;
  color: #F3F4F7;
}

button.outline-btn:hover {
  background: rgba(0, 0, 0, 0.1);
}

input, textarea {
  font-family: "Quattrocento Sans", sans-serif;
  font-size: 20px;
  border: none;
  outline: none;
  border-radius: 4px;
  padding: 15px 25px;
  resize: none;
  background: #fff;
  -webkit-box-shadow: 0px 0px 20px rgba(106, 124, 143, 0.3) inset;
          box-shadow: 0px 0px 20px rgba(106, 124, 143, 0.3) inset;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

input:hover, input:focus, textarea:hover, textarea:focus {
  -webkit-box-shadow: 0px 0px 10px rgba(106, 124, 143, 0.2) inset;
          box-shadow: 0px 0px 10px rgba(106, 124, 143, 0.2) inset;
}

autofill reset
input:-webkit-autofill,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  background-color: #fafafa;
  -webkit-text-fill-color: #000;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
  -webkit-box-shadow: 0px 0px 10px rgba(106, 124, 143, 0.2) inset;
          box-shadow: 0px 0px 10px rgba(106, 124, 143, 0.2) inset;
  -webkit-text-fill-color: #000;
}

label {
  font-family: "mukta vaani",sans-serif;
  font-size: 22px;
}

* {
  margin: 0;
  padding: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a {
  text-decoration: none;
  color: #000;
}

h1, h2, h3, a {
  font-family: "mukta vaani", sans-serif;
  letter-spacing: 0.02em;
  
}

h1 {
  font-size: 32px;
  font-weight: 500;
    color:#000;
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 26px;
  }
}

h2 {
  font-size: 28px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: 24px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 500;
  
}

@media screen and (max-width: 767px) {
  h3 {
    font-size: 22px;
  }
}

p {
  font-family: "Quattrocento Sans", sans-serif;
  font-size: 20px;
  line-height: 1.5em;
}

header {
  background: -webkit-gradient(linear, left top, left bottom, from(#6A7C8F), to(#485563));
  /* background: linear-gradient(180deg, rgba(0, 0, 255, 0.8), rgba(50, 50, 255, 0.8)); Change css in redwan */
  background: rgba(12,113,195,0.8); /*Change css in redwan*/
  padding: 15px 0;
}

header .grid-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[2];
      grid-template-columns: repeat(2, auto);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 70%;
  margin: 0 auto;
  width: 90%;
}

@media screen and (max-width: 1199px) {
  header .grid-wrap {
    width: 90%;
  }
}

header .grid-wrap .nav-bar {
  -ms-grid-column-align: end;
      justify-self: end;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[6];
      grid-template-columns: repeat(6, auto);
  grid-gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .grid-wrap .nav-bar .menu {
  position: relative;
  margin: 0px 15px;
}

header .grid-wrap .nav-bar .menu a {
  font-size: 20px;
  font-weight: 500;
  color: #F3F4F7;
}

header .grid-wrap .nav-bar .menu .border-bottom {
  position: absolute;
  bottom: 10px;
  opacity: 0;
  width: 100%;
  min-height: 2px;
  background: transparent;
}

header .grid-wrap .nav-bar .menu:hover .border-bottom {
  bottom: -5px;
  opacity: 0.8;
  background: #F3F4F7;
}

header .grid-wrap .hamburger-menu {
  -ms-grid-column-align: end;
      justify-self: end;
  display: none;
}

header .grid-wrap .hamburger-menu .btn svg {
  width: 35px;
  height: 35px;
}

header .grid-wrap .hamburger-menu .btn svg path {
  fill: #F3F4F7;
}

header .grid-wrap .hamburger-menu .btn:hover svg path {
  fill: #fff;
}

.responsive-content {
  position: fixed;
  top: 0;
  right: 0;
  width: 0%;
  opacity: 1;
  height: 100vh;
  background: -webkit-gradient(linear, left top, left bottom, from(#485563), to(#29323C));
  background: rgba(12,113,195,0.8);
  z-index: 9999;
}

.responsive-content .head {
  position: relative;
  padding: 20px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[2];
      grid-template-columns: repeat(2, auto);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.responsive-content .head .title {
  font-size: 20px;
  color: #fff;
}

.responsive-content .head .cls-btn {
  -ms-grid-column-align: end;
      justify-self: end;
}

.responsive-content .head .cls-btn button {
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-column-align: center;
      justify-self: center;
  padding: 10px;
  border-radius: 50px;
  border: 2px solid #fff;
  background: transparent;
}

.responsive-content .head .cls-btn button svg path {
  stroke: #fff;
}

.responsive-content .responsive-menu {
  padding: 10px 30px;
}

.responsive-content .responsive-menu a {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

.show-navcontent {
  opacity: 1;
  width: 50%;
}

@media screen and (max-width: 1199px) {
  header .grid-wrap .nav-bar {
    display: none;
  }
  header .grid-wrap .hamburger-menu {
    display: block;
  }
}

@media screen and (max-width: 479px) {
  .show-navcontent {
    width: 100%;
  }
}

@media screen and (max-width: 320px) {
  header .grid-wrap .logo img {
    width: 150px;
  }
}

footer {
  background: -webkit-gradient(linear, left top, left bottom, from(#485563), to(#29323C));
  background: rgba(12,113,195,0.62); /* Change css in redwan*/
}


footer .upper-part {
  width: 80%;
  margin: auto;
}

footer .upper-part .grid-wrap {
  padding: 70px 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  justify-items: center;
}

footer .upper-part .grid-wrap ul {
  color: #fff;
}

footer .upper-part .grid-wrap ul h3 {
  font-family: "mukta vaani", sans-serif;
  font-size: 22px;
  margin-bottom: 15px;
}

footer .upper-part .grid-wrap ul li {
  list-style: none;
  margin: 10px 0;
  font-family: "Quattrocento Sans",sans-serif;
  font-size: 19px;
  color: #fff;
  letter-spacing: 0.03em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

footer .upper-part .grid-wrap ul li:hover {
  color: #fff;
}

footer .upper-part .grid-wrap .btn {
  margin-top: 30px;
  margin-left: -10px;
}

footer .lower-part {
  width: 75%;
  margin: auto;
  padding: 15px 0;
}

footer .lower-part .grid-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
      grid-template-columns: auto auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .lower-part .grid-wrap .col-1 .inner-grid-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (auto)[4];
      grid-template-columns: repeat(4, auto);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .lower-part .grid-wrap .col-1 .inner-grid-wrap p, footer .lower-part .grid-wrap .col-1 .inner-grid-wrap a {
  font-family: "Quattrocento Sans", sans-serif;
  font-size: 16px;
  color: #dfdfdf;
}

footer .lower-part .grid-wrap .col-1 .inner-grid-wrap p:hover, footer .lower-part .grid-wrap .col-1 .inner-grid-wrap a:hover {
  color: #fff;
}

footer .lower-part .grid-wrap .col-2 {
  -ms-grid-column-align: end;
      justify-self: end;
}

footer .lower-part .grid-wrap .col-2 .social-icons {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
  grid-gap: 25px;
  margin-right: 40px;
}

footer .lower-part .grid-wrap .col-2 .social-icons svg path {
  fill: #dfdfdf;
}

footer .lower-part .grid-wrap .col-2 .social-icons svg:hover path {
  fill: #fff;
}

@media screen and (max-width: 1199px) {
  footer .upper-part {
    width: 85%;
  }
  footer .lower-part {
    width: 80%;
  }
  footer .lower-part .grid-wrap .col-1 .inner-grid-wrap {
    -ms-grid-columns: (auto)[2];
        grid-template-columns: repeat(2, auto);
  }
  footer .lower-part .grid-wrap .col-1 .inner-grid-wrap > * {
    margin: 5px;
  }
}

@media screen and (max-width: 991px) {
  footer .upper-part {
    width: 95%;
  }
  footer .lower-part {
    width: 90%;
  }
  footer .lower-part .grid-wrap .col-1 .inner-grid-wrap {
    -ms-grid-columns: (auto)[2];
        grid-template-columns: repeat(2, auto);
  }
  footer .lower-part .grid-wrap .col-1 .inner-grid-wrap > * {
    margin: 5px;
  }
}

@media screen and (max-width: 767px) {
  footer .upper-part {
    width: 85%;
  }
  footer .upper-part .grid-wrap {
    -ms-grid-columns: (auto)[2];
        grid-template-columns: repeat(2, auto);
    justify-items: start;
  }
  footer .lower-part {
    width: 90%;
  }
  footer .lower-part .grid-wrap .col-1 .inner-grid-wrap {
    -ms-grid-columns: (auto)[1];
        grid-template-columns: repeat(1, auto);
  }
  footer .lower-part .grid-wrap .col-1 .inner-grid-wrap > * {
    margin: 5px;
  }
}

@media screen and (max-width: 479px) {
  footer .upper-part {
    width: 85%;
  }
  footer .upper-part .grid-wrap {
    -ms-grid-columns: (auto)[1];
        grid-template-columns: repeat(1, auto);
    justify-items: start;
    padding: 50px 0 !important;
  }
  footer .lower-part {
    width: 90%;
  }
  footer .lower-part .grid-wrap {
    -ms-grid-columns: (auto)[1];
        grid-template-columns: repeat(1, auto);
    text-align: center;
  }
  footer .lower-part .grid-wrap .col-1 .inner-grid-wrap {
    -ms-grid-columns: (auto)[1];
        grid-template-columns: repeat(1, auto);
  }
  footer .lower-part .grid-wrap .col-1 .inner-grid-wrap > * {
    margin: 5px;
  }
  footer .lower-part .grid-wrap .col-2 {
    margin: 10px 0;
    -ms-grid-column-align: center;
        justify-self: center;
  }
  footer .lower-part .grid-wrap .col-2 .social-icons {
    margin-right: 0;
  }
}

.container .hero {
  background-image:linear-gradient(90deg, #2b70b8 0%, rgba(162, 192, 224, 0.44) 81%, rgba(255, 255, 255, 0) 100%), url(../images/productHero.jpeg); /* Change css in redwan*/
  background-repeat: no-repeat;
  background-position: center; 
  background-size: cover;
  padding: 75px 0;
} /* Change css in redwan*/

.container .hero .title {
  text-align: center;
}
.container .hero .title h1 {
  text-align: center;
  color: #fff !important;
}

.container .hero .title h1 {
  font-size: 40px;
  font-weight: 600;
}

.container > .title {
  margin-top: 75px;
}

.container .title {
  text-align: center;
  color: #485563;
}

.container .encryption {
  border-bottom: 1px solid #a4a4a4;
}

.container .encryption .wrap {
  width: 70%;
  margin: 0 auto;
  padding: 75px 0;
  padding-top: 30px;
}

@media screen and (max-width: 1199px) {
  .container .encryption .wrap {
    width: 90%;
  }
}

.container .encryption .wrap > * {
  margin-bottom: 20px;
}

.container .encryption .wrap .grid-wrap {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
  grid-gap: 60px;
}

.container .encryption .wrap .grid-wrap .col-1 .img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.container .encryption .wrap .grid-wrap .col-2 {
  padding-left: 50px;
}

.container .encryption .wrap .grid-wrap .col-2 .text {
  color: #485563;
  margin-bottom: 30px;
}

.container .encryption .wrap .grid-wrap .col-2 .text p {
  font-size: 24px;
  color: #666;
}

.container .encryption .wrap .grid-wrap .col-2 .list-wrap .list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: min-content auto;
      grid-template-columns: -webkit-min-content auto;
      grid-template-columns: min-content auto;
  grid-gap: 15px;
  margin: 20px 0;
}

.container .encryption .wrap .grid-wrap .col-2 .list-wrap .list svg {
  width: 26px;
  height: 26px;
}

.container .encryption .wrap .grid-wrap .col-2 .list-wrap .list svg path {
  fill: #485563;
}

.container .encryption .wrap .grid-wrap .col-2 .list-wrap .list p {
  color: #485563;
}

.container .recovery {
  border-bottom: 1px solid #a4a4a4;
}

.container .recovery .wrap {
  width: 70%;
  margin: 0 auto;
  padding: 75px 0;
}

@media screen and (max-width: 1199px) {
  .container .recovery .wrap {
    width: 90%;
  }
}

.container .recovery .wrap > * {
  margin-bottom: 20px;
}

.container .recovery .wrap .img {
  width: 95%;
  margin: 0 auto 20px;
}

.container .recovery .wrap .img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.container .recovery .wrap .text {
  color: #666;
}

@media screen and (max-width: 1199px) {
  .container > .title {
    width: 85%;
    margin: 75px auto 0;
  }
  .container .encryption .wrap {
    width: 80%;
  }
  .container .encryption .wrap .grid-wrap {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
  .container .encryption .wrap .grid-wrap .col-2 {
    padding: 0;
  }
  .container .recovery .wrap {
    width: 80%;
  }
}