html,
body {
  overflow-x: hidden;
}

/* font declaration  */

body {
  font-family: "Nunito Sans", sans-serif;
}


/* font declaration  */

/* header start  */

header {
  background-color: #F2F7FB;
  padding: 15px 0;
}

.page {
  font-weight: 700;
  color: #041D56;
  font-size: 16px;
  text-transform: uppercase;
}

.page:hover {
  color: #448EE4;
}

/* header end  */

/* hero start  */

.video-background {
  position: relative;
  padding: 200px 0;
  width: 100%;
  /* height: 100vh; */
  /* Full screen */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  object-fit: cover;
  /* Make sure it covers nicely */
}

.video-background .content {
  position: relative;
  z-index: 1;
  color: white;
  text-align: center;
}


.hero {
  padding: 120px 0;
  /* background-image: linear-gradient(to top, #041d5618, #448fe48c, #041D5641, #fff); */
  /* background-image: linear-gradient(to right, #00000049, #00000049),
    url(../images/hero.svg); */
  background-color: #F2F7FB;
  background-image: url(../images/hero.svg);
  background-repeat: no-repeat;
  background-position: top;
  background-size: cover;
}

/* .hero-content-wrapper {
  padding: 50px 40px;
  background-color: #f5f7f9e5;
  text-align: center;
} */

.hero-content-wrapper h2 {
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.hero-content-wrapper h1 {
  margin-top: 10px;
  margin-bottom: 15px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  font-size: 40px;
}

.hero-content-wrapper p {
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  margin-bottom: 30px;
}

.primary-btn {
  text-decoration: none;
  display: inline-block;
  background-color: #041D56;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 26px;
  line-height: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: 0.3s;
}

.primary-btn:hover {
  background-color: #448EE4;
  color: #fff;
}

.secondary-btn {
  text-decoration: none;
  display: inline-block;
  background-color: #fff;
  color: #041D56;
  font-weight: 800;
  font-size: 15px;
  padding: 12px 26px;
  line-height: 20px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: 0.3s;
}

.secondary-btn:hover {
  background-color: #448EE4;
  color: #fff;
}

/* hero end  */

/* LOGO SLIDER START  */

.logo-slider {
  padding: 80px 0 50px 0;
}

.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider {
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slider .slide-track {
  -webkit-animation: scroll 30s linear infinite;
  animation: scroll 30s linear infinite;
  display: flex;
  align-items: center;
  width: calc(250px * 14);
}

.slider .slide {
  text-align: center;
  width: 250px;
}

.slider .slide img {
  width: 80px;
}

@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 7));
  }
}

/* LOGO SLIDER END  */

/*About Start*/

.about {
  padding: 50px 0;
}

.png-bg {
  width: 600px;
  top: 20px;
  left: 60px;
  z-index: -1;
}

.liq-first-img {
  margin-top: 60px;
  border: 5px solid #fff;
  outline: 3px solid #ececec;
}

.liq-second-img {
  border: 5px solid #fff;
  outline: 3px solid #ececec;
}

.about-content h2 {
  font-weight: 700;
  font-size: 16px;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.about h3 {
  margin-top: 20px;
  font-weight: 800;
  font-size: 16px;
  color: #041D56;
}

.about-content h1 {
  margin-top: 10px;
  margin-bottom: 15px;
  font-weight: 900;
  font-size: 30px;
  color: #041D56;
  line-height: 30px;
}

.about-content h1 span {
  color: #448EE4;
}

.about-content p {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
  color: #041D56;
}

.about-content ul li {
  margin: 5px 0;
  font-weight: 600;
  font-family: "Lato", sans-serif;
  font-size: 16px;
}

.about-content ul li span {
  margin-right: 5px;
}

/*About End*/


/* founder start  */

.founder {
  padding: 50px 0;
}

.founder-coating-wrapper {
  background-color: #F2F7FB;
}

.founder-content {
  padding: 50px;
}

.founder-content h2 {
  font-weight: 600;
  font-size: 16px;
  color: #041D56;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.founder-content h1 {
  margin-top: 10px;
  font-weight: 900;
  font-size: 30px;
  color: #041D56;
  margin-bottom: 15px;
}

.founder-content h1 span {
  color: #448EE4;
}

.founder-content p {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 15px;
}

/* founder-coating end  */

/* who-we-are start  */

.who-we-are {
  padding: 30px 0px 0px 0;
}

.who-we-are h1 {
  margin-top: 10px;
  margin-bottom: 15px;
  font-weight: 900;
  font-size: 30px;
  color: #041D56;
  line-height: 30px;
}

.who-we-are h1 span {
  color: #448EE4;
}

.who-we-are p {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
  color: #041D56;
}

/* who-we-are end  */

/* features start  */

.features {
  padding: 50px 0px 80px 0;
  background-image: linear-gradient(to bottom, #fff, #ffffff93, #ffffffc7, #ffffffc7), url(../images/feature-bg.svg);
  background-repeat: no-repeat;
  background-position: top right;
}

.single-feature {
  margin: 10px 0;
  padding: 30px 25px;
  box-shadow: 0 0 20px #ddd;
  background-color: #f2f7fbec;
  min-height: 290px;
}

.single-feature .sf-i i {
  color: #448EE4;
  font-size: 40px;
}


.single-feature h2 {
  margin-top: 15px;
  font-weight: 900;
  font-size: 22px;
  color: #041D56;
  text-transform: capitalize;
}

.single-feature p {
  font-weight: 600;
  font-size: 16px;
  color: #041D56;
}

.single-feature a {
  text-decoration: none;
  color: #448EE4;
}

/* features end  */

/* service start  */

.service {
  padding: 80px 0;
}

.service h1 {
  margin-top: 10px;
  margin-bottom: 15px;
  font-weight: 900;
  font-size: 30px;
  color: #041D56;
  line-height: 30px;
}

.service h1 span {
  color: #448EE4;
}

.service p {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
  color: #041D56;
}

.single-service {
  margin: 10px 0;
  padding: 30px 25px;
  box-shadow: 0 0 20px #dddddd;
  background-color: #F2F7FB;
  min-height: 330px;
}

.ss-serial {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #448EE4;
  color: #fff;
  width: 40px;
  height: 40px;
  font-size: 24px;
  font-weight: 800;
}

.single-service h2 {
  margin-top: 15px;
  font-weight: 900;
  font-size: 22px;
  color: #041D56;
  text-transform: capitalize;
}

.single-service p {
  font-weight: 600;
  font-size: 16px;
  color: #041D56;
}

.single-service a {
  text-decoration: none;
  color: #448EE4;
}

/* service end  */

/* our solution start  */

.solution {
  background-color: #F2F7FB;
  padding: 80px 0;
}

.solution h1 {
  margin-top: 10px;
  margin-bottom: 15px;
  font-weight: 900;
  font-size: 30px;
  color: #041D56;
  line-height: 30px;
}

.solution h1 span {
  color: #448EE4;
}

.solution p {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
  color: #041D56;
}

.solution-wrapper h2 {
  margin-bottom: 20px;
  font-weight: 900;
  font-size: 26px;
  color: #041D56;
  text-transform: capitalize;
}

.solution-wrapper li {
  margin: 10px 0;
  font-weight: 600;
  font-size: 18px;
}

/* our solution end  */

/* cta start  */

.cta {
  padding: 70px 0;
  background-color: #041D56;
}

.cta .icon a {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  color: #041D56;
  font-size: 26px;
  transition: 0.3s;
}

.cta .icon a:hover {
  transform: scale(1.1);
}

.cta h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 900;
  font-size: 26px;
  color: #fff;
  text-transform: capitalize;
}

.cta h2 {
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  text-transform: capitalize;
}

.cta p {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 5px;
  color: #fff;
}

/* cta end  */

/*Testimonial Start*/

.testimonial {
  padding: 100px 0;
}

.carousel-control-prev,
.carousel-control-next {
  display: flex;
  align-items: self-end;
  bottom: 5%;
}

.carousel-control-prev {
  left: 76%;
}

.carousel-control-prev-icon {
  border: 1px solid #448EE4 !important;
  border-radius: 50px;
  background-image: none;
  background-color: #448ee4;
}

.carousel-control-next-icon {
  border: 1px solid #448EE4 !important;
  border-radius: 50px;
  background-image: none;
  background-color: #448EE4;
}

.carousel-control-prev-icon:hover {
  background-color: #041D56;
}

.carousel-control-next-icon:hover {
  background-color: #333;
}

.carousel-control-next-icon i {
  color: #fff;
  line-height: 32px;
}

.carousel-control-prev-icon i {
  color: #fff;
  line-height: 32px;
}

.divider-btn {
  display: none;
}

.testi-info {
  float: left;
}

.testimonial h1 {
  font-weight: 900;
  color: #041D56;
  font-size: 30px;
}

.testimonial h1 span {
  color: #448EE4;
}

.testimonial h4 {
  font-weight: 500;
  font-size: 16px;
  color: #333;
  margin-bottom: 30px;
}

.testimonial h2 {
    margin-bottom: 20px;
    font-weight: 900;
    font-size: 26px;
    color: #041D56;
    text-transform: capitalize;
}


.testimonial h3 {
  font-weight: 600;
  color: #000000;
  font-size: 18px;
}

.testimonial p {
  margin-bottom: 40px !important;
  font-weight: 500;
  font-size: 16px;
  color: #041D56;
}

/*Testimonial End*/


/* Contact start  */

.contact {
  padding: 100px 0;
  padding: 50px 0px 80px 0;
  background-color: #F2F7FB;
  background-image: linear-gradient(to bottom, #fff, #ffffffd0, #ffffffcd, #ffffffc9), url(../images/feature-bg.svg);
  background-repeat: no-repeat;
  background-position: top left;
}

.contact h1 {
  margin-top: 20px;
  font-weight: 700;
  font-size: 24px;
  color: #041D56;
}

.contact h3 {
  font-weight: 800;
  font-size: 20px;
  color: #448EE4;
}

.contact ul li {
  margin: 10px 0;
  font-weight: 700;
  font-size: 16px;
  color: #041D56;
}

.social-links li a {
  background-color: #448EE4;
  color: #fff;
  text-decoration: none;
  display: flex;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 20px;
  transition: 0.3s;
}

.social-links li a:hover {
  transform: scale(0.9);
}

.form-wrapper {
  margin-top: 4px;
  background-color: #ffffffa8;
  padding: 40px 30px;
  box-shadow: 0 0 20px #00000044;
}

.form-wrapper h2 {
  margin-bottom: 10px;
  font-weight: 900;
  font-size: 24px;
  color: #448EE4;
  text-transform: capitalize;
}


.form-wrapper p {
  font-weight: 700;
  font-size: 16px;
  color: #041D56;
  margin-bottom: 10px;
}

.form-wrapper .form-control {
  background-color: #e2e2e2 !important;
  border: 1px solid transparent;
  height: 60px;
  border-radius: 0px;
  padding-bottom: 0;
  padding-left: 8px;
  color: #041D56;
}

.form-wrapper .form-control:focus {
  border-color: #CE1616;
  box-shadow: 0 0 0 0;
}

.form-control.is-invalid:focus,
.was-validated .form-control:invalid:focus {
  box-shadow: 0 0 0 0;
}

.form-control.is-valid:focus,
.was-validated .form-control:valid:focus {
  box-shadow: 0 0 0 0;
}

.form-wrapper label {
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #041D56 !important;
  position: absolute;
  bottom: 0;
}

.form-group {
  position: relative;
  margin-bottom: 8px;
}

.form-control-placeholder {
  position: absolute;
  top: 10px;
  padding: 7px 0 0px 10px;
  transition: all 200ms;
}

.form-control:focus+.form-control-placeholder,
.form-control:valid+.form-control-placeholder {
  font-size: 75%;
  transform: translate3d(0%, -25%, 0);
  opacity: 1;
  color: #333;
}

textarea {
  resize: none;
  padding-top: 20px !important;
  height: 100px !important;
}

textarea::placeholder {
  color: #041D56 !important;
  font-size: 14px;
}

.form-control:focus+.cc-textarea,
.form-control:valid+.cc-textarea {
  font-size: 75%;
  transform: translate3d(0%, -16%, 0);
  opacity: 1;
  color: #333;
}

.submit-btn {
  margin-top: 15px;
  background-color: #448EE4;
  border: 0;
  width: 100%;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}

.submit-btn:hover {
  background-color: #041D56 !important;
  color: #fff;
}

/* Contact end  */

/* footer start  */

footer {
  background-color: #697565;
  padding: 15px 0;
}

footer p {
  margin-bottom: 0;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  color: #fff;
}

/* footer end  */


/* footer start  */
footer {
  background-color: #041D56;
  padding: 40px 0 0 0;
}

footer p {
  margin-bottom: 0;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}

.imp-link {
  text-align: center;
}

.imp-link li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}

.copyright {
  background-color: #041D56;
  padding: 20px 0 20px 0;
  text-align: center;
}

.copyright p {
  margin-bottom: 0;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
}



/* footer end  */

.modal-dialog {
  max-width: 70%;
}


#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 13px;
  background-color: #448EE4;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}

#backToTop.visible {
  opacity: 1;
  visibility: visible;
}

#backToTop:hover {
  background-color: #041D56;
}