@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter.woff");
}

html,
body {
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  overflow-x:hidden;
}
.grecaptcha-badge{
    display:none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #001992;
    margin: 0;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    font-weight: bold;
}

h1 {
  font-size: 70px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 14px;
}

p {
  font-size: 15px;
  color: #75849a;
  line-height: 2;
}

img {
  max-width: 100%;
}

input:focus,
select:focus,
button:focus,
textarea:focus {
  outline: none;
}

a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

button {
  text-transform: uppercase;
}

/*---------------------
	Helper CSS
-----------------------*/

.spad {
  padding-top: 100px;
  padding-bottom: 90px;
}

.section-title {
  margin-bottom: 60px;
}

.section-title h2 {
  margin-bottom: 20px;
}

.section-title p {
  margin-bottom: 0;
}

.set-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 0;
}

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
  color: #fff;
}

.clip-path-bottom {
  clip-path: polygon(0 0, 100% 0%, 100% 90%, 0 100%);
  padding: 10rem 0rem;
}

.clip-path-top {
  clip-path: polygon(0 10%, 100% 0%, 100% 100%, 0 100%);
  padding: 10rem 0rem;
}

.gradient-bg {
  background-size: cover;
  background-color: #f3f7f9;
  background-position: right top;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, #01038d 0%, #0d004e 50%);
}

.gradient-hero {
  background: linear-gradient(
      125deg,
      #00ff57 0%,
      #010033 40%,
      #460043 70%,
      #f0ffc5 100%
    ),
    linear-gradient(55deg, #0014c9 0%, #410060 100%),
    linear-gradient(300deg, #ffc700 0%, #001aff 100%),
    radial-gradient(
      135% 215% at 115% 40%,
      #393939 0%,
      #393939 40%,
      #849561 calc(40% + 1px),
      #849561 60%,
      #eed690 calc(60% + 1px),
      #eed690 80%,
      #ecefd8 calc(80% + 1px),
      #ecefd8 100%
    ),
    linear-gradient(
      125deg,
      #282d4f 0%,
      #282d4f 40%,
      #23103a calc(40% + 1px),
      #23103a 70%,
      #a0204c calc(70% + 1px),
      #a0204c 88%,
      #ff6c00 calc(88% + 1px),
      #ff6c00 100%
    );
  background-blend-mode: overlay, screen, overlay, overlay, normal;
}

/*---------------------
	Commom elements
-----------------------*/

/* Buttons */

.site-btn {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 500;
    line-height: 16px;
    border-radius: 50px;
    font-family: "Inter", sans-serif;
    min-width: 170px;
    text-align: center;
    border: 2px solid #7ad4cc;
    cursor: pointer;
    color: #fff;
    background-color: transparent;
    text-transform: uppercase;
    transition: all .4s;
}

.site-logo svg {
  height: 80px;
  height: 80px;
}
.logo-text {
  position: absolute;
  top: 15px;
  left: 120px;
  color: white;
}



.site-btn.no-radius {
  border-radius: 2px;
}

.site-btn.sb-full-- {
  display: block;
  width: 100%;
  border-radius: 0;
}

.site-btn.sb-green {
    background-color: #16d0c5;
    transition: all .4s;
}

.site-btn:hover {
    color: #16d0c5;
    background-color: white;
}




.site-btn.sb-purple {
  background-color: #d10082;
  border: 2px solid #d10082;
}
    .site-btn.sb-purple:hover {
        color: #d10082;
        background-color: white;
    }


/* Preloder */

#preloder {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background: #fff;
}

.loader {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  border-radius: 60px;
  animation: loader 0.8s linear infinite;
  -webkit-animation: loader 0.8s linear infinite;
}

@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}

/*---------------------
	Header section
-----------------------*/

.header-section {
  position: absolute;
  width: 100%;
  top: 0;
  padding: 30px 50px 0;
  z-index: 99;
  transition: all 1s ease-in-out 0s;
}

.header-section .responsive-bar,
.header-section .user {
  display: none;
}

.menu-list {
  list-style: none;
}

.menu-list li a {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  padding: 20px 5px;
  color: #fff;
}

.sticky {
  position: fixed !important;
  box-shadow: 0 2px 5px rgb(0 0 0 / 10%);
  padding: 20px 50px 0;
}

.navcontainer {
  position: relative;
}

.navgradient {
  background: linear-gradient(
    125deg,
    #00028a 0%,
    #00098f 40%,
    #00078f calc(40% + 1px),
    #00028c 60%,
    #050066 calc(60% + 1px),
    #0c0061 88%,
    #d20083 calc(88% + 1px),
    #ce0080 100%
  );
}

.navcontainer .checkbox-toggle {
  position: absolute;
  top: 0em;
  right: 0em;
  z-index: 2;
  cursor: pointer;
  width: 60px;
  height: 60px;
  opacity: 0;
}

.navcontainer .checkbox-toggle:checked + .hamburger > div {
  transform: rotate(135deg);
}

.navcontainer .checkbox-toggle:checked + .hamburger > div:after,
.navcontainer .checkbox-toggle:checked + .hamburger > div:before {
  top: 0;
  transform: rotate(90deg);
}

.navcontainer .checkbox-toggle:checked + .hamburger > div:after {
  opacity: 0;
}

.navcontainer .checkbox-toggle:checked ~ .menu {
  pointer-events: auto;
  visibility: visible;
}

.navcontainer .checkbox-toggle:checked ~ .menu > div {
  transform: scale(1);
  transition-duration: 0.75s;
}

.navcontainer .checkbox-toggle:checked ~ .menu > div > div {
  opacity: 1;
  transition: opacity 0.4s ease 0.4s;
}

.navcontainer .checkbox-toggle:hover + .hamburger {
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.navcontainer .checkbox-toggle:checked:hover + .hamburger > div {
  transform: rotate(225deg);
}

.navcontainer .hamburger {
  position: absolute;
  top: 0em;
  right: 0em;
  z-index: 1;
  width: 80px;
  height: 80px;
  padding: 0.5em 1em;
  border-radius: 0 0.12em 0.12em 0;
  cursor: pointer;
  transition: box-shadow 0.4s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.navcontainer .hamburger > div {
  position: relative;
  flex: none;
  width: 100%;
  top: 20px;
  height: 2px;
  background: white;
  transition: all 0.4s ease;
}

.navcontainer .hamburger > div:after,
.navcontainer .hamburger > div:before {
  content: "";
  position: absolute;
  z-index: 1;
  top: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: inherit;
  transition: all 0.4s ease;
}

.navcontainer .hamburger > div:after {
  top: 10px;
}

.navcontainer .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
  outline: 1px solid transparent;
  text-transform: uppercase;
}

.navcontainer .menu,
.navcontainer .menu > div {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.navcontainer .menu > div {
  width: 100%;
  height: 100%;
  transition: all 0.4s ease;
  flex: none;
  transform: scale(0);
}

.navcontainer .menu > div > div {
  text-align: center;
  width: 100vw;
  opacity: 0;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  flex: none;
  display: flex;
}

.navcontainer .menu > div > div,
.navcontainer .menu > div > div > ul {
  height: 100vh;
  align-items: center;
  justify-content: center;
}

.navcontainer .menu > div > div > ul {
  list-style: none;
  padding: 0 1em;
  margin: 0;
  display: block;
  display: flex;
  flex-direction: column;
}

/*---------------------
	Hero Section
-----------------------*/
.hero-container {
  float: right;
  max-width: 650px;
}
.hero-section {
  height: 950px;
  display: block;
}
.hero-section .laptop-image {
  max-width: none;
  position: relative;
}

.hero-text {
  padding-top: 80px;
}

.hero-text h2 {
  color: white;
  font-size: 70px;
  margin-bottom: 35px;
}

.hero-text h2 span {
  color: #16d0c5;
}

.hero-text h4 {
  color: #c8deff;
  font-size: 22px;
}

/*---------------------
  About Section
-----------------------*/

.about-section .container {
  position: relative;
}

.about-text {
  text-align: center;
  margin: auto;
  max-width: 700px;
}

.about-text h2 {
  font-size: 48px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.about-text h5 {
  font-family: "Lato", sans-serif;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 18px;
}

.about-img {
  position: absolute;
  top: 0;
  left: -120px;
  width: 662px;
}

.about-section .expertise-info {
  max-width: 300px;
  display: block;
  margin: 0 auto 20px;
  text-align: center;
}

.about-section .expertise-info i {
  font-size: 3em;
  color: #16d0c5;
}

.about-section .expertise-info h4 {
  margin: 10px 0 25px;
}

/*---------------------
  Feature Section
-----------------------*/

.features-section .container {
  margin-bottom: -45px;
}

.feature {
  margin-bottom: 45px;
}

.feature i {
  font-size: 48px;
  float: left;
  position: absolute;
  top: -15px;
}

.feature .feature-content {
  padding-left: 70px;
}

.feature .feature-content h4 {
  margin-bottom: 15px;
}

.feature .readmore {
  text-decoration: underline;
  line-height: 1.2;
}

/*---------------------
	Process Section
-----------------------*/
.process-section .left {
  float: right;
}
.process-section svg {
  height: 350px;
  width: 100%;
}

.process:last-child .process-step:after {
  display: none;
}

.process-step:before {
  position: absolute;
  content: "";
  width: 275px;
  height: 56px;
  top: -40px;
  left: -20%;
  background: url("../img/process-line.png") no-repeat scroll 0 0 / cover;
}

/*---------------------
	Fact Section
-----------------------*/

.fact-section {
  padding: 100px 0;
}

.fact {
  display: inline-block;
  position: relative;
}

.fact h2 {
  float: left;
  color: #16d0c5;
  font-size: 60px;
  margin-right: 20px;
}

.fact p {
  float: left;
  padding-top: 14px;
  line-height: 1.4;
  color: #fff;
  text-transform: uppercase;
}

.fact i {
  position: absolute;
  right: -20px;
  top: -50px;
  font-size: 90px;
  color: #fff;
  z-index: 0;
  opacity: 0.1;
}

/*---------------------
	Team Section
-----------------------*/

.team-section {
  overflow: hidden;
}

.team-members {
  margin: 0 -10px;
}

.member {
  background: #fff;
  margin: 0 10px;
  text-align: center;
  padding: 50px 10px;
  box-shadow: 0 0 15px -8px rgb(0 0 0 / 50%);
  border-radius: 10px;
  position: relative;
}

.member h2 {
  font-size: 22px;
  margin-bottom: 5px;
}

.member span {
  font-size: 14px;
  color: #75849a;
  display: block;
}

.member .member-text {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 1;
}

.member-img {
  width: 230px;
  height: 230px;
  display: inline-block;
  border-radius: 50%;
  margin-bottom: 25px;
}

.member-social {
  padding-top: 25px;
  background: #fff;
  position: relative;
  z-index: 2;
}

.member-social a {
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 50%;
  background: #cbd3df;
  color: #fff;
  padding-top: 13px;
  margin: 0 8px;
}

.member-meta {
  padding-left: 85px;
}

.member-info {
  padding: 50px 60px 10px;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  text-align: left;
  opacity: 0;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  height: 380px;
  overflow-y: auto;
}

.member-info p {
  display: block;
  padding-top: 25px;
  margin-bottom: 0;
}

.member-img.mf {
  width: 60px;
  height: 60px;
  opacity: 1;
  float: left;
  margin-bottom: 0;
}

/*---------------------
  Review Section
-----------------------*/

.review-meta-slider {
  position: relative;
  width: 300px;
}

.author-meta {
  padding: 10px 0 10px;
  position: relative;
  text-align: center;
}

.author-meta:last-child {
  margin-right: 0;
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -webkit-box-shadow: 0px 16px 21px rgba(33, 54, 61, 0.15);
  box-shadow: 0px 16px 21px rgba(33, 54, 61, 0.15);
  display: inline-block;
}

.author-avatar h4 {
  font-size: 22px;
}

.author-avatar p {
  font-size: 14px;
}

.author-name {
  position: absolute;
  width: 280px;
  left: -50%;
  bottom: -10px;
  margin-left: -50px;
  text-align: center;
  visibility: hidden;
}

.author-text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.center .author-meta {
  top: -6px;
}

.center .author-name {
  visibility: visible;
}

.center .author-avatar {
  width: 120px !important;
  height: 120px !important;
}

.review-text {
  display: none;
}
.center .review-text {
  display: inline;
}
.review-text p {
  font-size: 20px;
  text-align: center;
  max-width: 500px;
}

.review-text-slider .owl-nav {
  padding-top: 0;
  position: absolute;
  top: 50%;
  margin-top: -45px;
  left: 0;
  width: 100%;
}

.review-text-slider .owl-prev,
.review-text-slider .owl-next {
  width: 50px;
  height: 50px;
  display: inline-block;
  background: #cbd3df;
  color: #fff;
  font-size: 24px;
  text-align: center;
  margin-right: 10px;
  border-radius: 50%;
  padding-top: 8px;
}

.review-text-slider .owl-prev {
  float: left;
}
.review-text-slider .owl-next {
  float: right;
}

.pull-3 {
  right: 66.666667%;
}

.push-8 {
  left: 33.333333%;
}

/*---------------------
	Footer Section
-----------------------*/
.copyright-bar {
  padding: 18px 0;
}

.copyright-bar .column-left {
  flex-grow: 0;
}

.copyright-bar .footer-sociallinks {
  margin: 0;
  display: flex;
  justify-content: flex-end;
}

.copyright-bar .footer-sociallinks li {
  position: relative;
  margin-left: 16px;
}

.copyright-bar .footer-sociallinks {
  margin: 0;
  display: flex;
  justify-content: flex-end;
}

.copyright-bar .footer-sociallinks li a {
  display: block;
  color: #8b8f92;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  text-decoration: underline;
}

.copyright-bar ul {
  list-style: none;
  padding: 0;
}

.copyright-bar .column-right ul {
  margin: 0;
  display: flex;
  justify-content: center;
}

.copyright-bar .column-right ul li a img {
  height: 18px;
  display: inline-block;
  margin-right: 18px;
}

.copyright-bar .column-right ul li {
  position: relative;
  margin-right: 13px;
}

.copyright-bar .column-right ul li a {
  display: block;
  color: white;
  font-weight: 600;
  font-size: 10px;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/*---------------------
	Contact page
-----------------------*/
.contact-container {
  max-width: 800px !important;
}

.contact-form {
  padding-right: 35px;
}

.contact-form h5 {
  font-size: 16px;
  font-family: "Lato", sans-serif;
}

.contact-form h5 span {
  color: #16d0c5;
}

.contact-form .form-group {
  position: relative;
  margin-bottom: 20px;
}

.contact-form .form-group span {
  position: absolute;
  right: 0;
  top: 10px;
  font-size: 16px;
  color: #7bc063;
  opacity: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.contact-form .form-group span.active {
  opacity: 1;
}

.contact-form .check-form {
  padding-right: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  height: 50px;
  border: none;
  border-bottom: 1px solid #ebebeb;
  font-size: 16px;
  padding-bottom: 10px;
  color: #20509e;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #20509e;
}

.contact-form textarea {
  padding-bottom: 10px;
  padding-top: 10px;
  height: 115px;
}

.contact-form .contact-type .ct-label {
  display: inline-block;
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  margin-right: 40px;
  cursor: pointer;
  font-size: 16px;
  color: #acb9cc;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.contact-form .contact-type .ct-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.contact-form .contact-type .ct-label input:checked ~ .checkmark:after {
  content: "\f111";
  color: #16d0c5;
}

.contact-form .contact-type .ct-label .checkmark {
  position: absolute;
  top: 3px;
  left: 0;
  height: 25px;
  width: 25px;
}

.contact-form .contact-type .ct-label .checkmark:after {
  position: absolute;
  content: "\f10c";
  font-family: "FontAwesome";
  font-size: 14px;
}

.contact-form .contact-type .ct-label:last-child {
  margin-right: 0;
}

.contact-form ::-webkit-input-placeholder {
  color: #acb9cc;
}

.contact-form :-ms-input-placeholder {
  color: #acb9cc;
}

.contact-form ::-ms-input-placeholder {
  color: #acb9cc;
}

.contact-form ::placeholder {
  color: #acb9cc;
}

.map {
  height: 390px;
  -webkit-box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.15);
  box-shadow: 0px 23px 49px rgba(33, 54, 61, 0.15);
}

/*------------------
	Prices
---------------------*/

.pricingTable:hover {
  transform: scale(1.1);
}

.pricingTable {
  background: #fff;
  font-family: "Montserrat", sans-serif;
  text-align: center;
  padding: 30px 30px 70px;
  border-radius: 10px;
  box-shadow: 0 0 15px -8px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition-duration: 0.5s;
}

.pricingTable:before,
.pricingTable:after {
  content: "";
  background-color: #f4f5f9;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  position: absolute;
  top: -213px;
  right: -213px;
  z-index: -1;
}
.pricingTable:after {
  background-color: #16d0c5;
  height: 300px;
  width: 300px;
  top: auto;
  bottom: -210px;
  right: auto;
  left: -160px;
}
.pricingTable .title {
  color: #1a2a3a;
  font-size: 33px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.pricingTable .title:before {
  content: "";
  background-color: #1a2a3a;
  width: 65px;
  height: 3px;
  margin: 0 auto 20px;
  display: block;
  clear: both;
}
.pricingTable .price-value {
  color: #fff;
  background-color: #16d0c5;
  width: 160px;
  height: 160px;
  padding: 35px 0 0;
  margin: 0 auto 25px;
  border-radius: 50%;
}
.pricingTable .price-value .currency {
  font-size: 35px;
  font-weight: 300;
  line-height: 35px;
  vertical-align: top;
  display: inline-block;
}
.pricingTable .price-value .amount {
  font-size: 58px;
  font-weight: 700;
  line-height: 45px;
  display: inline-block;
}
.pricingTable .price-value .duration {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0 0 0 -5px;
}
.pricingTable .pricing-content {
  padding: 0;
  margin: 0 0 25px;
  list-style: none;
  display: inline-block;
}
.pricingTable .pricing-content li {
  color: #888;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  padding: 0 0 0 35px;
  margin: 0 0 20px;
  position: relative;
}
.pricingTable .pricing-content li:last-child {
  margin: 0;
}
.pricingTable .pricing-content li:before {
  content: "";
  color: #fff;
  background-color: #16d0c5;
  font-family: "Font Awesome 5 Free";
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  line-height: 20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 0;
}

.pricingTable.second:after {
  background-color: #070064;
}
.pricingTable.second .price-value {
  background-color: #070064;
}
.pricingTable.second .pricing-content li:before {
  background-color: #070064;
}

.pricingTable.first:after {
  background-color: #d10082;
}
.pricingTable.first .price-value {
  background-color: #d10082;
}
.pricingTable.first .pricing-content li:before {
  background-color: #d10082;
}

@media only screen and (max-width: 990px) {
  .pricingTable {
    margin-bottom: 30px;
  }
}

#cookie-bar {
  position: fixed;
  bottom: 10px;
  right: 10px;
  padding: 0 85px 0 20px;
  background: #0c32ed;
  z-index: 999999;
  width: 305px;
  max-width: 100%;
  padding: 22px;
  font-family: inter;
  font-size: 14px;
}

#cookie-bar p {
  color: #fff;
}

#cookie-bar a {
  text-decoration: underline;
  color: #fff;
}
.cb-enable {
  cursor: pointer;
  text-decoration: none !important;
  display: block;
  background-color: #fff;
  color: #0c32ed !important;
  padding: 10px;
  font-weight: bold;
  width: 100%;
  margin-top: 20px;
  text-transform: uppercase;
  text-align: center;
}

/*------------------
	Responsive
---------------------*/

@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

@media (max-width: 1585px) {
  .hero-section .laptop-image {
    left: 0;
  }
}

@media (max-width: 1425px) {
  .hero-section,
  .page-info-section {
    background-position: right 30% top;
  }
  .hero-section .laptop-image {
    width: auto;
    max-width: 100%;
    top: 70px;
  }
  .about-img {
    left: -50px;
    width: 600px;
  }
}

@media (min-width: 1199px) and (max-width: 1390px) {
  .member {
    padding: 35px 10px;
  }
  .member-img {
    width: 160px;
    height: 160px;
  }
  .member-info {
    padding: 50px 27px 10px;
    height: 275px;
  }
  .member-social a {
    margin: 0 5px;
  }
}

/* Medium screen : 992px. */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .hero-section,
  .page-info-section {
    background-position: right 23% top;
  }
  .about-img {
    left: 0px;
    width: 480px;
  }
  .member {
    margin-bottom: 30px;
  }
  .team-members {
    text-align: center;
  }
  .fact h2 {
    font-size: 45px;
    margin-right: 10px;
  }
  .fact p {
    padding-top: 7px;
  }
}

/* Tablet :768px. */

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header-section {
    padding: 20px 15px 0;
  }
  .hero-section {
    background-position: right 25% top;
    height: 730px;
    padding-top: 160px;
  }
  .page-info-section {
    background-position: right 33% top;
  }
  .page-info-section h2 {
    font-size: 40px;
  }
  .hero-text h2 {
    font-size: 45px;
  }
  .process-step:after {
    width: 154px;
    height: 35px;
    top: -10px;
    right: -44%;
    background-size: contain;
  }
  .about-img {
    position: relative;
    display: block;
    left: 0;
    width: auto;
    margin-top: 50px;
  }
  .member {
    margin-bottom: 30px;
    padding: 35px 10px;
  }
  .member-img {
    width: 160px;
    height: 160px;
  }
  .member-info {
    padding: 50px 27px 10px;
    height: 275px;
  }
  .member-social a {
    margin: 0 5px;
  }
  .team-members {
    text-align: center;
  }
  .fact {
    margin-bottom: 30px;
  }
  .pull-3 {
    right: 0;
  }
  .push-8 {
    left: 0;
  }
  .review-section {
    text-align: center;
  }
  .review-text {
    padding: 0 60px;
  }
  .review-meta-slider {
    margin: auto;
  }
  .author-meta {
    padding-top: 0;
  }
}

/* Large Mobile :480px. */

@media only screen and (max-width: 767px) {
  .header-section {
    padding: 20px 0 0;
  }
  .header-section .responsive-bar {
    float: right;
    font-size: 25px;
    display: block;
    cursor: pointer;
  }
  .header-section .user {
    float: right;
    font-size: 25px;
    color: #333;
    margin-right: 20px;
    display: block;
  }
  .menu-list {
    list-style: none;
  }
  .hero-text h2 {
    font-size: 40px;
  }
  .hero-section {
    height: auto;
    padding-bottom: 100px;
    padding-top: 160px;
    background-position: right 50% top;
  }
  .page-info-section {
    background-position: right 56% top;
    margin-top: 97px;
  }
  .page-info-section h2 {
    font-size: 40px;
  }
  .about-img {
    position: relative;
    display: block;
    left: 0;
    width: auto;
    margin-top: 50px;
  }
  .team-members {
    margin: 0;
    padding: 0 15px;
  }
  .member {
    width: 100%;
    margin-bottom: 30px;
    margin-left: 0;
  }
  .fact {
    margin-bottom: 30px;
  }
  .process-step:after {
    display: none;
  }
  .pull-3 {
    right: 0;
  }
  .push-8 {
    left: 0;
  }
  .review-section {
    text-align: center;
  }
  .review-text {
    padding: 0 60px;
  }
  .review-meta-slider {
    margin: auto;
  }
  .author-meta {
    padding-top: 0;
  }
  .review-text {
    max-width: 800px;
  }
  .blog-item {
    margin-bottom: 30px;
  }
  .single-blog-page .social-share {
    text-align: left;
    margin-top: 20px;
  }
}

/* small Mobile :320px. */

@media only screen and (max-width: 479px) {
  .review-text {
    padding: 0 45px;
  }
  .review-text p {
    font-size: 18px;
  }
  .review-text-slider .owl-prev,
  .review-text-slider .owl-next {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .review-meta-slider {
    width: auto;
  }
  .member-img {
    width: 180px;
    height: 180px;
  }
  .member-info {
    padding: 50px 20px 10px;
    height: 320px;
  }
  .blog-text {
    padding: 15px;
  }
  .comment .comment-avator {
    float: none;
    margin-bottom: 20px;
  }
  .comment .comment-content {
    padding-left: 0;
  }
}




.required label:after {
    content: "*";
    color: #e24747;
}

.wait {
    display: none;
}

.validation-summary-errors {
    margin-top: 20px;
    color: red;
    color: #e24747;
}

    .validation-summary-errors ul, .validation-summary-errors ul li {
        list-style-type: none;
        margin: 0px;
        padding: 0px;
        color: #e24747;
    }

        .validation-summary-errors ul li {
            padding-bottom: 16px;
            border-radius: 4px;
            line-height: 23px;
            padding-top: 20px;
            font-size: 18px;
            background-color: #e24747;
            color: white;
            margin-bottom: 10px;
            padding-left: 40px;
            background-repeat: no-repeat;
            background-position: 20px center;
        }