
@font-face {
  font-family: "Oswald";
  src: url("../font/Oswald-Regular.ttf");
}
@font-face {
  font-family: "Oswald-medium";
  src: url("../font/Oswald-Medium.ttf");
}
@font-face {
    font-family: "Oswald-bold";
    src: url("../font/Oswald-Bold.ttf");
}
@font-face {
  font-family: "Oswald-light";
  src: url("../font/Oswald-Light.ttf");
}

body {
  font-family: impact;
  color: #585a61;
}

a {
  color: #5777ba;
  text-decoration: none;
}

a:hover {
  color: #7b94c9;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: impact;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: yellow;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: black;
  line-height: 0;
}

.back-to-top:hover {
  background: #f3f71f;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 15px 0;
  background: rgba(255, 255, 255, 0.95);
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo h1 {
  font-size: 30px;
  margin: 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 2px;
  color: #04176d;
}

#header .logo h1 a, #header .logo h1 a:hover {
  color: #04176d;
  text-decoration: none;
}

#header .logo img {
  margin: 0;
  max-height: 60px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
  margin-right: 200px;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight:500;
  color: black;
  white-space: nowrap;
  transition: 0.3s;
  font-family: "Oswald";
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: black;
 
}
 .navbar .active {
  color: black;
  border: 2px solid rgb(35, 142, 243);
  padding: 10px;
}
#topicon{
  background-color: black;
  padding: 5px;;
  margin-left: 100px;
 
}
.navbar .getstarted {
  background: #5777ba;
  color: #fff;
  padding: 12px 25px;
  margin-left: 30px;
  color: #fff;
  line-height: 1;
  border-radius: 50px;
}

.navbar .getstarted:hover {
  background: #748ec6;
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #5777ba;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #47536e;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(51, 60, 79, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #47536e;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #5777ba;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #5777ba;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: auto;
  position: relative;
  overflow: hidden;
  padding: 100px 0 50px 0;
  background:#ffff00;
  background-repeat: no-repeat;
}

#hero::before {
  content: '';
  position: absolute;
  right: -100%;
  top: 20%;
  width: 250%;
  height: 200%;
  z-index: -1;
  background-color: white;
  transform: skewY(135deg);
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 35px;
 
  line-height: 40px;
 color: rgb(4, 4, 199);;
  font-family: sans-serif;
}

#hero h2 {
  color: #000033;
  margin-bottom: 30px;
  font-size: 60px;
  font-family: 'Oswald';
 
}
#hero p {
  color: #000033;
  font-family: 'Oswald-light';
  font-weight: 600;
  font-size: 24px;
}
.banntit{
  color: black;
  margin-bottom: 30px;
  font-size: 60px;
  font-family: 'Oswald';
  font-weight: 900;
  font-style: bold;
}
#hero .download-btn {
  font-family: 'Oswald';
  font-weight: 600;
  font-size: 25px;
  display: inline-block;
  padding: 8px 30px 10px 30px;
  border-radius: 3px;
  transition: 0.5s;
  color: #fff;
  background:#16a9d7;
  position: relative;
  border-radius: 10px;
}

#hero .download-btn:hover {
  background: #5777ba;
}

#hero .download-btn i {
  font-size: 20px;
  position: absolute;
  left: 18px;
  top: 8.5px;
}

#hero .download-btn + .download-btn {
  margin-left: 20px;
}

@media (max-width: 991px) {
  #hero {
    text-align: center;
  } 
  #hero .download-btn + .download-btn {
    margin: 0 10px;
  }   
  
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 60%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f2f5fa;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #5777ba;
  font-family: "Oswald-medium", sans-serif;
}
.titlee{
  font-size: 35px;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: white;
  font-family: "Oswald-medium", sans-serif;
}
p{
  font-size: 16px;
  font-weight: 400;
  color: black;

}
.titleecon{
  font-size: 40px;
  font-weight: 00;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: white;
  font-family: "Oswald-medium", sans-serif;
  
}


/*---start---*/
.custit{
  font-size: 25px;
  font-weight: 300;
  color: black;
  
  padding: 5px;;
}
.custpara{
  font-size: 18px;
  font-weight: 100;
  color: black;
  
  padding: 5px;;
}
.bordd{
  border: 2px solid rgb(52, 168, 214);
  padding: 20px;
  height: 250px;
  background-image: url('../img/box-yellow-bg.png');
  background-position: 0px 50px;
  background-repeat: no-repeat;
 
}
.topwhite{
  margin-top: -200px;
  background-color: transparent;
 
}
.wicon{

  text-align: center;
  image-rendering: center;
  background-position: center;
}
.whiteebgg{
  background-color: transparent;
  padding: 20px;
 
}
.whtecrd1{
box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, 0.24), 0 6px 20px 0 rgba(0, 0, 0, 0.24);
border-radius: 10px;
padding:30px;
background: url('../img/box-blue-bg.png') no-repeat no-repeat bottom left #ffffff;

text-align: center;
}
.whtecrd{
  margin-top: 20px;
  box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, 0.24), 0 6px 20px 0 rgba(0, 0, 0, 0.24);
  border-radius: 10px;
  padding:15px;
  background: url('../img/box-blue-bg.png') no-repeat bottom left #ffffff;

  text-align: center;
  padding: 30px;
  }
#topyellow{
  margin-top: -100px;
}
.texttc{
  font-size: 25px;
  font-weight: 100;
  color: black;
  text-align: center;
  padding: 5px;;

}
.texttp{
  font-size: 18px;
  font-weight: 100;
  color: black;
  text-align: center;
  padding: 5px;;
}
.con{
  margin-top:60px;
  margin-bottom:120px;
}
#cardyellowtop{
  background-color: yellow;
   border-radius: 10px;
 

}
#hyelow{
  background-color: yellow;
  height: 100px;
}
.img-health{
  width: 550px;
  height: 400px;
  max-width: 100%;
  max-height: 100%;
}
#incardd{
  text-align: center;
}
.in-crd{

  text-align: center;
  image-rendering: center;
  background-position: center;
  padding: 40px 40px 20px 40px;
}

.innocard {

  box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, 0.24), 0 6px 20px 0 rgba(0, 0, 0, 0.24);
  text-align: center;
  border-radius: 10px;
  background: url('../img/box-blue-bg.png') no-repeat #ffffff;
  background-position: 0px 100px;

 
}
.innovativetitle{
  font-size: 35px;
  font-weight: 0;
 text-align: center;
  padding:10px;
  color: black;
  font-family:"Oswald-medium";
}
.img-chall{
  width: 350px;
  height: 350px;
 margin-left: -180px;
}
#bgcolorchall{

  border-radius: 10px 0px 0px 10px;;

}
#challtext{
  padding-left: 50px;
}
#bgcoloropp{ 
 border-radius: 0px 10px 10px 0px;;
 padding: 20px;
}
#toprow{
 
}
.lf-yellow{background: linear-gradient(to right, #ffff00, #ffff00 30.33%, white 30.33%, white 69.66%, #ffffff 69.66%);}
.rf-yellow{background: linear-gradient(to left, #ffff00, #ffff00 30.33%, white 30.33%, white 69.66%, #ffffff 69.66%);}
#toprow1{
  height: 50px;
}
.img-opp{
  
  text-align:right;
}
.iconpara{
  font-size: 16px;
}
.section2title{
  font-size: 40px;
  font-family:"Oswald-medium";
 line-height: 50px;
  padding-bottom: 0;
  color: black;
  
}
.section2para{
  font-size: 20px;
  font-weight: 200;
  font-family:"Oswald-medium";
  padding-bottom: 0;
  color: black;
}

#colcenter{
  text-align: center;
  
}
.conttr{
  padding:0;
}
.polaroid {

  box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, 0.24), 0 6px 20px 0 rgba(0, 0, 0, 0.24);
  text-align: center;
  border-radius: 10px;;
  padding-bottom: 20px;
  padding-bottom: 20px;
}
.font-white{color:#ffffff;}
.polaroid1{

  box-shadow: 4px 4px 4px 4px rgba(0, 0, 0, 0.24), 0 6px 20px 0 rgba(0, 0, 0, 0.24);
  text-align: center;
  border-radius: 10px;;
  padding-bottom: 20px;
  background-color: rgb(6, 114, 236);
 
}
.section-title p {
  margin-bottom: 0;
}

.details .backgroundcolors{
background-color: azure;
}
#tiletmid{
  text-align: center;
}
.paramid{
  color: white;
  font-size: 18px;
  font-family: "Oswald-medium", sans-serif;
}
.cardboxtitle{
  color: black;
  font-size: 20px;
}
#cardboxpara{
  color: black;
  font-size: 16px;
}
.box{
  padding: 20px;;
}
.cards{
  background-color: blue;
color: white;
padding: 0px;
height: 190px;
}
.boxtitle{
  color: white;
  font-size: 24px;
  font-weight: 400;

  font-family: "Poppins", sans-serif;
}
.boxpara{
  color: white;
  font-size: 16px;

}
.download-btn2 {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 20px;
  display: inline-block;
  padding: 8px 24px 10px 46px;
  border-radius: 3px;
  transition: 0.5s;
  color: black;
  background: rgb(30, 187, 179);
  position: relative;
  border-radius: 10px;;
}

.download-btn3 {
  font-size: 20px;
  display: inline-block;
  padding: 8px 24px 10px 24px;
  border-radius: 3px;
  transition: 0.5s;
  color:white;
  background: rgb(8, 65, 119);
  position: relative;
  border-radius: 10px;
  font-family: "Oswald-medium", sans-serif;
}
.download-btn3:hover { }


.features .content .icon-box {
  
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  text-align: center;
 
  background-color: white;
padding: 10px;
height: 280px;
max-height: auto;

}




.features .content .icon-box i {
  font-size: 48px;
  float: left;
  color: #5777ba;
}



@media (max-width: 991px) {
  .features .image {
    text-align: center;
  }
  .features .image img {
    max-width: 80%;
  }
}

@media (max-width: 667px) {
  .features .image img {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Details

--------------------------------------------------------------*/

.details .content + .content {
  margin-top: 100px;
}

.details .content h3 {
  font-weight: 700;
  font-size: 32px;
  color: #47536e;
}

.details .content ul {
  list-style: none;
  padding: 0;
}

.details .content ul li {
  padding-bottom: 10px;
}

.details .content ul i {
  font-size: 24px;
  padding-right: 2px;
  color: #5777ba;
  line-height: 0;
}

.details .content p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact { 
background-color: rgb(62, 178, 224);
padding: 60px 0 50px 0;

max-height: auto;

}

.contact .info {
  color: white;
  text-align: center;
  border-bottom: 1px solid #fff;
}
.contact .info i {
  font-size: 48px;
  color: #9fb2d8;
  margin-bottom: 15px;
}
.contact .info h4 {
  padding: 0;
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}
.contact .info p {
  font-size: 15px;
}

#bottomform .form-group{
  background-color: transparent;
  border:none;
  border-bottom: 2px solid white;
}
#bottomform .form-control{background:none; width:100%; border-bottom: 1px solid white; box-shadow: none;
  font-size: 14px; border: none; padding: 10px 15px; color:#ffffff;}
#bottomform input, #bottomform textarea{padding: 12px 15px; border-radius:0;box-shadow:none;font-size:15px}
#bottomform button[type="submit"] {
  background: yellow;
  color: black;
  padding: 10px 24px;
 text-align: center;
  transition: 0.4s;
  border-radius: 20px;
  margin-top: 5px;
  width: 100%;
  font-size: 18px;
  border: none;
}

#name::placeholder, #email::placeholder, #phone::placeholder, #comments::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #ffffff !important;
}

#name:-ms-input-placeholder, #email:-ms-input-placeholder, #phone:-ms-input-placeholder, #comments:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #ffffff !important;
}

#name::-ms-input-placeholder, #email::-ms-input-placeholder, #phone::-ms-input-placeholder, #comments::-ms-input-placeholder { /* Microsoft Edge */
  color: #ffffff !important;
}


@media (max-width: 1024px) {
  
}

@media (max-width: 768px) {
 
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.loggfoot{
  width: 300px;
  height: 60px;
}
.footera{
  color: white;
  padding-left: 10px;;
  font-size: 16px;
}
#foot{
  background-color: rgb(2, 65, 77);
  padding: 30px;
}
.copyright {
  text-align: center;
  
  color: white;
  text-align: right;
  float: right;
  font-size: 16px;
}
.respo-img{max-width:100%; height:auto;}
.yellow-bg-round{background:url('../img/yellow-round-bg.png') no-repeat bottom center;}

@media (max-width: 768px) {
  #foot .copyright, #foot .credits {
    float: none;
    text-align: center;
    padding: 5px 0;
  }
}
