body {
  font-family: "Roboto", sans-serif;
}

.roboto-light {
  font-weight: 300;
}

.roboto-regular {
  font-weight: 400;
}

.roboto-medium {
  font-weight: 500;
}

a:link {
  color: #0082cd;
  text-decoration: none;
}

a:visited {
  color: #0082cd;;
  text-decoration: none;
}

a:hover {
  color: #dd0084;
}

a:active {
  color: #0082cd;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000000;
}

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

.back-to-top i {
  font-size: 28px;
  color: #ffffff;
  line-height: 0;
}

.back-to-top:hover {
  background: #0082cd;
  color: #ffffff;
}

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

#header {
  background: #ffffff;
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

#header .logo img {
  max-height: 40px;
}

.navbar {
  padding: 0;
}

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

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 300;
  white-space: nowrap;
  transition: 0.3s;
  text-transform: none;
}

.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: #0082cd;
}

.navbar .social-links a {
    display: inline-block;
    color: #0082cd;
    padding: 0;
    margin-left: 20px;
    border-radius: 4px;
    transition: 0.3s;
}

.navbar .social-links a i {
    font-size: 28px;
    vertical-align: middle;
}

.navbar .social-links a:hover {
    color: #000000;
    text-decoration: none;
}

.mobile-nav-toggle {
  color: #000000;
  font-size: 32px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

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

@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(7, 25, 33, 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;
  background-color: #ffffff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 20px;
}

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

#hero {
  width: 100%;
  height: 80vh;
  background: #ebebeb;
}

#hero .container {
  padding-top: 84px;
}

#hero h1 {
  margin: 0;
  font-size: 38px;
  font-weight: 400;
  line-height: 42px;
}

#hero h2 {
  margin: 10px 0 0 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
    text-align: center;
  }

  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 768px) {
    #hero {
    height: 100vh;
    text-align: center;
  }
  
  #hero h1 {
    font-size: 28px;
    line-height: 31px;
  }

  #hero h2 {
    font-size: 18px;
    line-height: 28px;
  }

  #hero .hero-img img {
    width: 90%;
  }
}

section {
  padding: 60px 0;
  overflow: hidden;
}

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

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

.section-title h2 {
  font-size: 38px;
  font-weight: 400;
  line-height: 42px;
  margin-bottom: 20px;
  padding-bottom: 0;
}

.section-title p {
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
  margin-bottom: 0;
  }

.solutions {
	/* changed from 30 to 60px; */
    padding-top: 60px;
}

.solutions .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0 10px 40px 10px;
  background: #ebebeb;
  box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
  transition: all 0.3s ease-in-out;
}

.solutions .icon-box:hover {
  transform: translateY(-5px);
}

.solutions .icon {
  position: absolute;
  left: -20px;
  top: calc(10% - 30px);
}

.solutions .icon i {
  font-size: 64px;
  line-height: 1;
  transition: 0.5s;
  color: #ffab00;
}

.solutions .title {
  font-size: 20px;
  font-weight: 400;
  margin-left: 40px;
  margin-bottom: 20px;
}

.solutions .description {
  font-size: 16px;
  font-weight: 300;
  line-height: 26px;
  margin-left: 40px;
  margin-bottom: 0;
}

#about {
  background: #ebebeb;
}

.about .icon-boxes h3 {
  font-size: 38px;
  font-weight: 400;
  line-height: 42px;
  margin-bottom: 20px;
}

.about .icon-boxes p {
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
}

.about .icon-box {
  margin-top: 40px;
}

.about .icon-box .icon {
  float: left;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid #ffab00;
  border-radius: 50px;
  transition: 0.5s;
}

.about .icon-box .icon i {
  color: #ffab00;
  font-size: 32px;
}

.about .icon-box:hover .icon {
  background: #ffab00;
  border-color: #ffab00;
}

.about .icon-box:hover .icon i {
  color: #ffffff;
}

.about .icon-box .title {
  margin-left: 85px;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 18px;
}

.about .icon-box .title a {
  color: #000000;
}

.about .icon-box .description {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  margin-left: 85px;
}

@media (max-width: 768px) {
  .about .icon-boxes h3 {
    text-align: center;
  }
}

#footer {
  background: #ffffff;
  padding: 20px 30px 30px 40px;
  font-size: 14px;
  font-weight: 300;
}

#footer .copyright {
  color: #000000;
  text-align: left;
}

#footer .address {
  color: #000000;
  text-align: right;
}

@media (max-width: 575px) {
  #footer .copyright,
  #footer .address {
    float: none;
    text-align: center;
  }
}