:root {
  --main-color:#10a9cb;
  --main-color-light: #d2edf4;
  --navbar-background: #fff;
  --button: #10a9cb;
  --button-hover: #0090b0;
  --bg-light: #f4fafc;
  --bg-white: #fff;
}

body {
  margin: 110px 0 0 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
   -khtml-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: var(--bg-light);
}

#topbar {
  background: var(--bg-light);
  height: 40px;
  font-size: 13px;
  transition: all 0.6s;
  z-index: 999;
}

#topbar.topbar-scrolled {
  top: -40px;
}

#topbar .contact-info i {
  color: var(--main-color);
  padding-right: 4px;
  line-height: 0;
}

#topbar .contact-info a {
  line-height: 1;
  color: #444444;
  transition: 0.3s;
}

#topbar .social-links .icon {
  margin: 0 auto 0 10px;
  width: 20px;
  height: 20px;
  background: var(--main-color);
  border-radius: 3px;
  transition: all 0.3s ease-out 0s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  text-decoration: none;
}

#topbar .social-links .icon::before {
  position: absolute;
  content: "";
  left: -3px;
  top: -3px;
  height: 100%;
  width: 100%;
  background: var(--main-color-light);
  border-radius: 3px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

#topbar .social-links .icon i {
  color: #fff;
  font-size: 12px;
}

#topbar .social-links .bootstrap-select {
  background: var(--main-color);
  margin: 0 0 0 15px;
  padding: 0;
}

#topbar .social-links .bootstrap-select button {
  background: var(--main-color);;
  border: 0;
  margin: 0;
  color: white;
  font-size: 15px;
  height: 40px;
  line-height: 28px;
  outline: none !important;
  border-radius: 0;
}

#topbar .social-links .bootstrap-select .dropdown-item.active,
#topbar .social-links .bootstrap-select .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: var(--main-color);
}

#topbar .social-links .bootstrap-select .dropdown-menu {
  margin: 0;
  border-radius: 0;
  padding: 0;
  border: 0;
}

header {
  background: #fff;
  transition: all 0.5s;
  z-index: 997;
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 99;
}

#header.header-scrolled {
  top: 0;
}

header .bg-light {
  min-height: 70px;
  background-color: var(--navbar-background) !important;
}

header .navbar {
  -webkit-box-shadow: 0px 2px 15px 0px rgba(16 169 203 / 10%);
  -moz-box-shadow: 0px 2px 15px 0px rgba(16 169 203 / 10%);
  box-shadow: 0px 2px 15px 0px rgba(16 169 203 / 10%);
}

main {
  display: block;
  -webkit-box-shadow: 0px 2px 15px 0px rgba(16 169 203 / 10%);
  -moz-box-shadow: 0px 2px 15px 0px rgba(16 169 203 / 10%);
  box-shadow: 0px 2px 15px 0px rgba(16 169 203 / 10%);
  background: var(--bg-white);
}

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

section#services,
section#team {
  background: var(--bg-light);
  padding: 70px 0 60px;
}

section#team .member {
  position: relative;
  box-shadow: 0px 2px 15px rgb(44 73 100 / 8%);
  padding: 30px;
  border-radius: 10px;
  background: white;
}

section#team .member .pic {
  min-width: 100px;
}

section#team .member .pic img {
  transition: ease-in-out 0.3s;
  border-radius: 50%;
}

section#team .member .member-info {
  padding-left: 30px;
}

section#team .member .member-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 16px;
  color: #2c4964;
}

section#team .member .member-info span {
  display: block;
  font-size: 14px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
}

section#team .member .member-info span::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: var(--main-color-light);
  bottom: 0;
  left: 0;
}

section#team .member .member-info p {
  margin: 10px 0 0 0;
  font-size: 13px;
}

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

section .section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #2c4964;
}

section .section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}

section .section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: var(--main-color);
  bottom: 0;
  left: calc(50% - 20px);
}

section .section-title p {
  margin-bottom: 0;
}

section#services .row .icon-box {
  text-align: center;
  padding: 50px 20px;
  transition: all ease-in-out 0.3s;
  background: white;
  border-radius: 10px;
  cursor: default;
  box-shadow: 0px 2px 15px rgb(44 73 100 / 8%);
  -webkit-transition: background-color 400ms linear;
    -ms-transition: background-color 400ms linear;
    transition: background-color 400ms linear;
}

section#services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #10a9cb;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}

section#services .icon-box .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: var(--main-color-light);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

section#services .icon-box .icon i {
  color: #fff;
  font-size: 28px;
}

section#services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 24px;
  color: #2c4964;
}

section#services .icon-box h4 a {
  color: #2c4964;
}

section#services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

section#services .row .icon-box:hover {
  background: #10a9cb;
  color: white;
}

section#services .row .icon-box:hover .icon {
  background: white;
}

section#services .row .icon-box:hover .icon i {
  color: #10a9cb;
}

section#services .row .icon-box:hover h4 a, section#services .row .icon-box:hover h4 {
  color: white;
  text-decoration: none;
  cursor: default;
}

.navbar ul.navbar-nav li {
  position: relative;
  white-space: nowrap;
  padding: 8px 10px 8px 10px;

  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.navbar .navbar-brand {
  margin: 0;
  display: flex;
  align-items: center;
}

.navbar .navbar-brand span {
  float: right;
  font-size: 26px;
  margin-left: 10px;
  color: #2d4964;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

.navbar .navbar-toggler-icon, .navbar .navbar-toggler-icon:focus, .navbar .navbar-toggler-icon:target {
  outline: none;
}

.navbar ul.navbar-nav a.nav-link:hover,
.navbar ul.navbar-nav li.active a.nav-link,
.navbar ul.navbar-nav li.active:focus {
  border-color: var(--main-color);
}

.navbar ul.navbar-nav li a:hover,
.navbar ul.navbar-nav li.active a.nav-link,
.navbar ul.navbar-nav li.active:focus a.nav-link,
.navbar ul.navbar-nav li:hover a.nav-link {
  color: var(--main-color);
}

.navbar ul.navbar-nav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  color: #2c4964;
  white-space: nowrap;
  transition: 0.3s;
  border-bottom: 2px solid var(--navbar-background);
  padding: 5px 2px;
}

@media (min-width: 1024px) {
  #subheader {
      background-attachment: fixed;
  }
}

#subheader {
  width: 100%;
  background: url(../img/sub-header.jpg) top center;
  background-size: cover;
  padding: 0;
}

#subheader .overlay {
  padding: 60px 0;
  height: 60vh;
  width: 100%;
  background: #ffffff66;
}

#subheader h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  /*text-transform: uppercase;*/
  color: #2c4964;
}

#subheader h2 {
  color: #2c4964;
  margin: 10px 0 0 0;
  font-size: 24px;
}

#subheader .btn-get-started {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 35px;
  margin-top: 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: var(--button);
}

#subheader .btn-get-started:hover {
  text-decoration: none;
  background: var(--button-hover);
}

section#contact .info {
  width: 100%;
  background: var(--bg-white);
  padding: 0 8px 0 8px;
}

/*section#contact .info i {
  font-size: 20px;
  color: #d6e9fa;
  float: left;
  width: 44px;
  height: 44px;
  background: #10a9cb;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}*/

section#contact .icon {
  float: left;
  width: 44px;
  height: 44px;
  color: white;
  background: #10a9cb;
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transform-style: preserve-3d;
}

section#contact .icon::before {
  position: absolute;
  content: "";
  left: -8px;
  top: -8px;
  height: 100%;
  width: 100%;
  background: var(--main-color-light);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

section#contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 2px;
  color: #2c4964;
}

section#contact .info p {
    padding: 0 0 0 60px;
    margin-bottom: 0;
    font-size: 13px;
    color: #4b7dab;
}

section#contact .info .email,
section#contact .info .phone,
section#contact .info .company {
  margin-top: 40px;
}

section#contact .info .company em {
  font-style: normal;
  font-weight: 600;
  width: 28px;
  display: inline-block;
}

section#contact .contact-form input {
  height: 44px;
}

section#contact .contact-form input, section#contact .contact-form textarea {
  box-shadow: none;
  font-size: 14px;
}

/*form .error {
  font-size: 12px;
  color: #f44336;
  margin-top: 5px;
}

form .error.valid {
  color: #4caf50;
}*/

form .form-message {
  padding: 5px 7px;
  border-radius: 5px;
  margin: 0 0 10px 0;
  font-size: 13px;
  border: 1px;
  border-style: solid;
}

form .form-message.error {
  color: #f44336;
  border-color: #ffdbdb;
  background: #ffdbda;
}

form .form-message.success {
  color: #4caf50;
  border-color: #c7e6c5;
  background: #e4f2e4;
}

form label.error {
  font-size: 12px;
  color: #f44336;
  margin-top: 2px;
  margin-left: 15px;
  background: #ffd0d0;
  position: absolute;
  border-radius: 5px;
  padding: 5px 7px;
}

form label.error:after {
  content: " ";
  position: absolute;
  right: calc(50% - 10px);
  top: -10px;
  border-top: none;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-bottom: 10px solid #ffd0d0;
}

section#contact .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  background-color: var(--bg-white);
  background-clip: padding-box;
  border: 1px solid #ced4da;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 7px;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

button, input, optgroup, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

section#contact .contact-form button[type=submit] {
  background: var(--button);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
  cursor: pointer;
}

section#contact .contact-form button[type=submit]:hover {
  background: var(--button-hover);
}

#footer {
  color: #444444;
  font-size: 14px;
  /*background: var(--bg-light);*/
}

#footer .container {
  align-items: center;
}

#footer .me-md-auto {
  margin-right: auto;
}

#footer .social-links .icon {
  margin: 0 auto 0 10px;
  width: 28px;
  height: 28px;
  background: var(--main-color);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  text-decoration: none;
}

#footer .social-links .icon::before {
  position: absolute;
  content: "";
  left: -5px;
  top: -5px;
  height: 100%;
  width: 100%;
  background: var(--main-color-light);
  border-radius: 5px;
  transition: all 0.3s ease-out 0s;
  transform: translateZ(-1px);
}

#footer .social-links .icon i {
  color: #fff;
  font-size: 15px;
}

#footer .social-links .icon:hover {
  background: var(--main-color-light);
}

#footer .social-links .icon:hover::before {
  background: var(--main-color);
}

#footer .social-links .icon:hover i {
  color: var(--main-color);
}

@media (max-width: 576px) {
  #subheader .container {
    text-align: center;
  }
  section#team .member {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  section#team .member .pic {
    max-width: 100px;
    margin-bottom: 25px;
  }
  section#team .member .member-info {
    padding-left: 0px;
  }
}
