@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
* {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
 
          box-sizing: border-box;
  text-decoration: none;
  outline: none;
  border: none;
  text-transform: capitalize;
  transition: all .2s linear;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  overflow-x: hidden;
}


body {
  background: #fff;
}

section {
  padding: 5rem 9%;
}

.heading {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.heading::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: .1rem;
  width: 100%;
  background: #000;
  z-index: -1;
}

.heading span {
  font-size: 3rem;
  color: rgb(0, 102, 255);
  background: #fff;
  padding: .5rem 1.5rem;
  border: 0.1rem solid #000;
  border-radius: .5rem;
}

.btn {
  margin-top: 1rem;
  display: inline-block;
  padding: 1rem 3.8rem;
  padding-right: 3rem;
  background: linear-gradient(130deg, rgb(0, 102, 255) 50%, transparent 90%);
  color: #fff;
  cursor: pointer;
  transition: 500ms all;
  font-size: 1.7rem;
}

.btn:hover {
          transform: scale(1.1);
          color: #fff;
}



.navbar{
  background-color: #0055a5 !important;
  color: #fff !important;
}

.navbar-expand-lg .navbar-nav .nav-link{
  font-size: 25px;
  font-weight: normal;
  padding: 0px 15px;
  color: #fff !important;
}
.navbar-expand-lg .navbar-nav .nav-link:active{
  background-color: #0055a5;
}




#menu-btn {
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  display: none;
}

.ms-auto {
  margin-left: auto!important;
  margin: 0;
  padding: 10px 0;
}
.navbar-brand{
  font-size: 25px;
  color: #fff !important;
}

.home{
  height: 85vh;
  width: 100%;
  margin-top: 60px;
  background-image: url(../images/bannerhome.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.InnerHome{

  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.InnerHome h2{
  color: #fff !important;
  font-size: 80px;
}



.video-section {
  background-color: #f2f2f2;
  padding: 50px 0;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

video {
  width: 100%;
  height: auto;
}

.home .slide .content h2 {
  margin-top: 20rem !important;
  font-size: 7rem;
  color: #fff;
  font-weight: bolder;

  padding: 1rem 0;
}

.swiper-pagination-bullet {
  height: 2rem;
  width: 2rem;
  background: #fff;
  border-radius: 0;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgb(0, 102, 255);
}

.about {

  display: flex;

          align-items: center;
      flex-wrap: wrap;
  gap: 8rem;
}

.about .image {

          flex: 1 1 42rem;
  position: relative;
}

.about .image::before, .about .image::after {
  content: '';
  position: absolute;
  z-index: -1;
  background: rgb(0, 102, 255);
  height: 15rem;
  width: 15rem;
}

.about .image::before {
  top: 0;
  left: 0;
}

.about .image::after {
  bottom: 0;
  right: 0;
}

.about .image img {
  width: 100%;
  padding: 2rem;
}

.about .content {
	flex: 1 1 42rem;
}

.about .content span {
  font-size: 2rem;
  color: rgb(0, 102, 255);
}

.about .content .title {
  font-size: 5rem;
  color: #000;
  margin-top: .5rem;
}

.about .content p {
  font-size: 2.5rem;
  color: #000;
  padding: 1rem 0;
  line-height: 2;
}

.about .content .box-container {

  display: flex;
      flex-wrap: wrap;
  gap: 2rem;
  margin-top: 1rem;
}

.about .content .box-container .box {

          flex: 1 1 20rem;
}

.about .content .box-container .box h3 {
  font-size: 2rem;
  color: #000;
}

.about .content .box-container .box h3 i {
  padding-right: 1.5rem;
  color: rgb(0, 102, 255);
}

.features .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(32rem, 1fr));
  gap: 1.5rem;
  gap: 0;
}


.features .box-container .box {
  background: #fff;
}

.features .box-container .box.second {
 display: flex;
 
          flex-flow: column-reverse;
}

.features .box-container .box:hover .image img {
          transform: scale(1.1);
}

.features .box-container .box .image {
  height: 30rem;
  width: 100%;
  overflow: hidden;
}

.features .box-container .box .image img {
  height: 100%;
  width: 100%;
     object-fit: cover;
}

.features .box-container .box .content {
  padding: 2rem;
  text-align: center;

}

.features .box-container .box .content img {
  height: 9rem;
  margin-bottom: 1rem;
 filter: invert(1);
}

.features .box-container .box .content h3 {
  font-size: 3.5rem;
  color: rgb(0, 102, 255);
}

.features .box-container .box .content p {
  line-height: 2;
  font-size: 2rem;
  color: #000;
  padding: 1rem 0;
}

.contact-us-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
}
.contactInfo .row{
  align-items: center;
}
.sidebar {
  background-color: rgb(0, 102, 255);
  color: white;
  padding: 20px;
  margin: 0 auto;
  border-radius: 10px;
  width: 550px;
}
.sidebar a{
  color: #fff;
}

.sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar li {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.form-container {

  background-color: white;
  color: rgb(0, 102, 255);
  padding: 20px;
  border-radius: 10px;
  flex-grow: 1;

}


.form-container h3 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.form-container label {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.form-container input,
.form-container textarea {
  width: 100%;
  padding: 1rem;
  border-radius: 5px;
  border: 1px solid rgb(0, 102, 255);
  margin-bottom: 1rem;
}

.form-container button[type="submit"] {
  background-color: rgb(0, 102, 255);
  color: white;
  padding: .9rem 3rem;
  border: none;
  font-size: 3rem;
  border-radius: 5px;
  cursor: pointer;
}

.form-container button[type="submit"]:hover {
  background-color: #0055a5;
}

.review {
  display: flex;
 
          align-items: center;
      flex-wrap: wrap;
  gap: 2rem;
}

.review .information {
 
          flex: 1 1 35rem;
}

.review .information span {
  font-size: 3rem;
  color: rgb(0, 102, 255);
}

.review .information h3 {
  font-size: 3rem;
  color: #000;
  padding-top: 1rem;
}

.review .information p {
  font-size: 2.5rem;
  line-height: 2;
  color: #000;
  padding: 1rem 0;
}

.review .review-slider {

          flex: 1 1 60rem;
}

.review .review-slider .slide {
  background: linear-gradient(130deg, #e6dada 93%, transparent 90%);
  padding: 2rem 3rem;
}

.review .review-slider .slide p {
  font-size: 2.5rem;
  line-height: 2;
  color: #000;
}

.review .review-slider .slide .user {
  display: flex;
 
          align-items: center;
  margin-top: 1.5rem;
}

.review .review-slider .slide .user img {
  height: 5rem;
  width: 5rem;

     object-fit: cover;
  border-radius: 50%;
  margin-right: 1rem;
}

.review .review-slider .slide .user h3 {
  font-size: 2rem;
  color: #000;
}

.review .review-slider .slide .user span {
  color: rgb(0, 102, 255);
  font-size: 1.5rem;
}

.review .review-slider .slide .user i {
  font-size: 5rem;
  margin-left: auto;
  margin-right: 2rem;
  color: rgb(0, 102, 255);
}

.blogs .slide {
  background: #fff;
}

.blogs .slide:hover .image img {
          transform: scale(1.1);
}

.blogs .slide .image {
  height: 25rem;
  width: 100%;
  overflow: hidden;
}

.blogs .slide .image img {
  height: 100%;
  width: 100%;

     object-fit: cover;
}

.blogs .slide .content {
  padding: 2rem;
}

.blogs .slide .content .link {
  padding-bottom: 1.5rem;
  font-size: 1.5rem;
}

.blogs .slide .content .link a {
  color: rgb(0, 102, 255);
}

.blogs .slide .content .link a:hover {
  color: #fff;
}

.blogs .slide .content .link span {
  color: #000;
  padding: 0 1rem;
}

.blogs .slide .content h3 {
  font-size: 2.5rem;
  color: #000;
  line-height: 1.5;
}
.credit {
  font-size: 2rem;
  text-align: center;
  padding: 2rem;
  color: #000;
  background: #fff;
  line-height: 1.5;
}

.credit span {
  color: rgb(0, 102, 255);
}


.credit  .share {
  padding: 1rem 0;
}

.credit  .share a {
  height: 4.5rem;
  width: 4.5rem;
  line-height: 4.5rem;
  font-size: 1.7rem;
  color: #fff;
  background: rgb(0, 102, 255)00;
  border-radius: 50%;
  margin-right: .5rem;
  text-align: center;
}

.credit .box .share a:hover {
  background: rgb(0, 102, 255);
}
#marqueeslider{
	overflow:hidden;
}
.navbar-toggler{
	background-color:white;
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
	padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
@media (max-width: 991px) {
  html {
    font-size: 55%;
    scroll-padding: 7rem;
  }
  section {
    padding: 3rem 2rem;
  }
  .home .slide {
    padding: 2rem 5%;
  }
  .home .slide .content {
    width: 50rem;
  }
  .home .slide .content h3 {
    font-size: 4rem;
  }
  .navbar-nav{
	  gap:30px;
	  margin-top: 18px;
  }
  .navbar-expand-lg .navbar-nav .nav-link{
	  padding:0px;
  }
  .navbar{
	padding: 0px 13px;
  }
}

@media (max-width: 768px) {
  #menu-btn {
    display: inline-block;
  }
  #menu-btn.fa-times {
            transform: rotate(180deg);
  }
  .sidebar{
    width: 100%;
  }
  .home{
    margin-top: 0;
  }
  .InnerHome h2 {
    font-size: 35px;
}

  .about {
    gap: 3rem;
  }
  .about .image {
    margin-top: 5rem;
  }
  .about .content .title {
    font-size: 3rem;
  }
  .features .box-container .box.second {
            flex-flow: column;
  }
  .text-section {
    display: grid !important;
  }
  .image-left {
		margin-top: 0px;
		width: 100% !important;
	}
	.texthome {
		width: 100% !important;
		margin-top: 30px !important;
	}
	.contact-us-container{
		padding: 30px 0px 0px 0px;
	}
	.left-img{
		width:100% !important;
		height:100% !important;
	}
	.image-left{
		margin-top: 30px !important;
	}
	ul{
		padding-left: 0px;
	}

}

@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
}
/*# sourceMappingURL=style.css.map */